Version Description
- Fixed uninstall hook
Download this release
Release Info
Developer | danieledesantis |
Plugin | WP Add Custom CSS |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- readme.txt +7 -1
- wordpress-add-custom-css.php +3 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: danieledesantis
|
|
3 |
Tags: css, custom css, style, styles, stylesheet, custom stylesheet, single post css, site css, single page css, custom post type css, product css
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 4.9.4
|
6 |
-
Stable tag: 1.1.
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -63,6 +63,9 @@ Click on the "Screen option" link from your post/page editing area and be sure t
|
|
63 |
|
64 |
== Changelog ==
|
65 |
|
|
|
|
|
|
|
66 |
= 1.1.0 =
|
67 |
* Added CodeMirror text editor
|
68 |
|
@@ -99,6 +102,9 @@ Click on the "Screen option" link from your post/page editing area and be sure t
|
|
99 |
|
100 |
== Upgrade Notice ==
|
101 |
|
|
|
|
|
|
|
102 |
= 1.1.0 =
|
103 |
* Added CodeMirror text editor
|
104 |
|
3 |
Tags: css, custom css, style, styles, stylesheet, custom stylesheet, single post css, site css, single page css, custom post type css, product css
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 4.9.4
|
6 |
+
Stable tag: 1.1.1
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
63 |
|
64 |
== Changelog ==
|
65 |
|
66 |
+
= 1.1.1 =
|
67 |
+
* Fixed uninstall hook
|
68 |
+
|
69 |
= 1.1.0 =
|
70 |
* Added CodeMirror text editor
|
71 |
|
102 |
|
103 |
== Upgrade Notice ==
|
104 |
|
105 |
+
= 1.1.1 =
|
106 |
+
* Fixed uninstall hook
|
107 |
+
|
108 |
= 1.1.0 =
|
109 |
* Added CodeMirror text editor
|
110 |
|
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, pages and custom post types.
|
6 |
-
Version: 1.1.
|
7 |
Author: Daniele De Santis
|
8 |
Author URI: http://www.danieledesantis.net
|
9 |
Text Domain: wp-add-custom-css
|
@@ -248,7 +248,7 @@ if(!class_exists('Wpacc'))
|
|
248 |
);
|
249 |
}
|
250 |
|
251 |
-
public function delete_options() {
|
252 |
unregister_setting(
|
253 |
'wpacc_group',
|
254 |
'wpacc_settings'
|
@@ -256,7 +256,7 @@ if(!class_exists('Wpacc'))
|
|
256 |
delete_option('wpacc_settings');
|
257 |
}
|
258 |
|
259 |
-
public function delete_custom_meta() {
|
260 |
delete_post_meta_by_key('_single_add_custom_css');
|
261 |
}
|
262 |
|
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, pages and custom post types.
|
6 |
+
Version: 1.1.1
|
7 |
Author: Daniele De Santis
|
8 |
Author URI: http://www.danieledesantis.net
|
9 |
Text Domain: wp-add-custom-css
|
248 |
);
|
249 |
}
|
250 |
|
251 |
+
public static function delete_options() {
|
252 |
unregister_setting(
|
253 |
'wpacc_group',
|
254 |
'wpacc_settings'
|
256 |
delete_option('wpacc_settings');
|
257 |
}
|
258 |
|
259 |
+
public static function delete_custom_meta() {
|
260 |
delete_post_meta_by_key('_single_add_custom_css');
|
261 |
}
|
262 |
|