Version Description
- Fixed > rendering issue
Download this release
Release Info
Developer | danieledesantis |
Plugin | WP Add Custom CSS |
Version | 0.9.4 |
Comparing to | |
See all releases |
Code changes from version 0.9.3 to 0.9.4
- css/custom-css.php +1 -0
- readme.txt +7 -1
- wordpress-add-custom-css.php +1 -1
css/custom-css.php
CHANGED
@@ -2,5 +2,6 @@
|
|
2 |
header("Content-type: text/css");
|
3 |
$custom_css = get_option('wpacc_settings');
|
4 |
$custom_css = wp_kses( $custom_css['main_custom_style'], array( '\'', '\"' ) );
|
|
|
5 |
echo $custom_css;
|
6 |
?>
|
2 |
header("Content-type: text/css");
|
3 |
$custom_css = get_option('wpacc_settings');
|
4 |
$custom_css = wp_kses( $custom_css['main_custom_style'], array( '\'', '\"' ) );
|
5 |
+
$custom_css = str_replace ( '>' , '>' , $custom_css );
|
6 |
echo $custom_css;
|
7 |
?>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: danieledesantis
|
|
3 |
Tags: css, custom css, stylesheet, custom stylesheet, single post css, site css, single page css
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 4.1.1
|
6 |
-
Stable tag: 0.9.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -52,6 +52,9 @@ Click on the "Screen option" link from your post/page editing area and be sure t
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
55 |
= 0.9.3 =
|
56 |
* Fixed minor bug
|
57 |
|
@@ -67,6 +70,9 @@ Click on the "Screen option" link from your post/page editing area and be sure t
|
|
67 |
|
68 |
== Upgrade Notice ==
|
69 |
|
|
|
|
|
|
|
70 |
= 0.9.3 =
|
71 |
* Fixed minor bug
|
72 |
|
3 |
Tags: css, custom css, stylesheet, custom stylesheet, single post css, site css, single page css
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 4.1.1
|
6 |
+
Stable tag: 0.9.4
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 0.9.4 =
|
56 |
+
* Fixed > rendering issue
|
57 |
+
|
58 |
= 0.9.3 =
|
59 |
* Fixed minor bug
|
60 |
|
70 |
|
71 |
== Upgrade Notice ==
|
72 |
|
73 |
+
= 0.9.4 =
|
74 |
+
* Fixed > rendering issue
|
75 |
+
|
76 |
= 0.9.3 =
|
77 |
* Fixed minor bug
|
78 |
|
wordpress-add-custom-css.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Add Custom CSS
|
4 |
Plugin URI: http://www.danieledesantis.net
|
5 |
Description: Add custom css to the whole website and to specific posts and pages.
|
6 |
-
Version: 0.9.
|
7 |
Author: Daniele De Santis
|
8 |
Author URI: http://www.danieledesantis.net
|
9 |
Text Domain: wp-add-custom-css
|
3 |
Plugin Name: WP Add Custom CSS
|
4 |
Plugin URI: http://www.danieledesantis.net
|
5 |
Description: Add custom css to the whole website and to specific posts and pages.
|
6 |
+
Version: 0.9.4
|
7 |
Author: Daniele De Santis
|
8 |
Author URI: http://www.danieledesantis.net
|
9 |
Text Domain: wp-add-custom-css
|