Version Description
- Fixed double quotes rendering issue
Download this release
Release Info
Developer | danieledesantis |
Plugin | WP Add Custom CSS |
Version | 0.9.1 |
Comparing to | |
See all releases |
Code changes from version 0.9 to 0.9.1
- css/custom-css.php +2 -1
- readme.txt +10 -2
- wordpress-add-custom-css.php +1 -1
css/custom-css.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<?php
|
2 |
header("Content-type: text/css");
|
3 |
$custom_css = get_option('wpacc_settings');
|
4 |
-
|
|
|
5 |
?>
|
1 |
<?php
|
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 |
?>
|
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.0
|
6 |
-
Stable tag: 0.9
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -52,5 +52,13 @@ Click on the "Screen option" link from your post/page editing area and be sure t
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
55 |
= 0.9 =
|
56 |
-
* First release
|
|
|
|
|
|
|
|
|
|
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.0
|
6 |
+
Stable tag: 0.9.1
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 0.9.1 =
|
56 |
+
* Fixed double quotes rendering issue
|
57 |
+
|
58 |
= 0.9 =
|
59 |
+
* First release
|
60 |
+
|
61 |
+
== Upgrade Notice ==
|
62 |
+
|
63 |
+
= 0.9.1 =
|
64 |
+
Fixed double quotes rendering issue
|
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.1
|
7 |
Author: Daniele De Santis
|
8 |
Author URI: http://www.danieledesantis.net
|
9 |
Text Domain: wp-add-custom-css
|