Version Description
- Fixed minor bug
Download this release
Release Info
Developer | danieledesantis |
Plugin | WP Add Custom CSS |
Version | 0.9.3 |
Comparing to | |
See all releases |
Code changes from version 0.9.2 to 0.9.3
- readme.txt +11 -1
- wordpress-add-custom-css.php +2 -2
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.2 =
|
56 |
* Fixed minor bug
|
57 |
* Minor layout changes
|
@@ -64,5 +67,12 @@ Click on the "Screen option" link from your post/page editing area and be sure t
|
|
64 |
|
65 |
== Upgrade Notice ==
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
= 0.9.1 =
|
68 |
Fixed double quotes rendering issue
|
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.3
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 0.9.3 =
|
56 |
+
* Fixed minor bug
|
57 |
+
|
58 |
= 0.9.2 =
|
59 |
* Fixed minor bug
|
60 |
* Minor layout changes
|
67 |
|
68 |
== Upgrade Notice ==
|
69 |
|
70 |
+
= 0.9.3 =
|
71 |
+
* Fixed minor bug
|
72 |
+
|
73 |
+
= 0.9.2 =
|
74 |
+
* Fixed minor bug
|
75 |
+
* Minor layout change
|
76 |
+
|
77 |
= 0.9.1 =
|
78 |
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
|
@@ -180,8 +180,8 @@ if(!class_exists('Wpacc'))
|
|
180 |
$single_custom_css = get_post_meta( $post->ID, '_single_add_custom_css', true );
|
181 |
if ( $single_custom_css !== '' ) {
|
182 |
$output = "<style type=\"text/css\">" . $single_custom_css . "</style>\n";
|
|
|
183 |
}
|
184 |
-
echo $output;
|
185 |
}
|
186 |
}
|
187 |
|
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.3
|
7 |
Author: Daniele De Santis
|
8 |
Author URI: http://www.danieledesantis.net
|
9 |
Text Domain: wp-add-custom-css
|
180 |
$single_custom_css = get_post_meta( $post->ID, '_single_add_custom_css', true );
|
181 |
if ( $single_custom_css !== '' ) {
|
182 |
$output = "<style type=\"text/css\">" . $single_custom_css . "</style>\n";
|
183 |
+
echo $output;
|
184 |
}
|
|
|
185 |
}
|
186 |
}
|
187 |
|