Version Description
- Fixed compatibility issue with The Events Calendar
Download this release
Release Info
Developer | danieledesantis |
Plugin | WP Add Custom CSS |
Version | 1.1.4 |
Comparing to | |
See all releases |
Code changes from version 1.1.3 to 1.1.4
- readme.txt +8 -2
- wordpress-add-custom-css.php +2 -2
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
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: 5.0.
|
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.3 =
|
67 |
* Fixed WordPress 5 compatibility issues
|
68 |
* Fixed Gutenberg compatibility issues
|
@@ -111,6 +114,9 @@ Click on the "Screen option" link from your post/page editing area and be sure t
|
|
111 |
|
112 |
== Upgrade Notice ==
|
113 |
|
|
|
|
|
|
|
114 |
= 1.1.3 =
|
115 |
* Fixed WordPress 5 compatibility issues
|
116 |
* Fixed Gutenberg compatibility issues
|
2 |
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: 5.0.3
|
6 |
+
Stable tag: 1.1.4
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
63 |
|
64 |
== Changelog ==
|
65 |
|
66 |
+
= 1.1.4 =
|
67 |
+
* Fixed compatibility issue with The Events Calendar
|
68 |
+
|
69 |
= 1.1.3 =
|
70 |
* Fixed WordPress 5 compatibility issues
|
71 |
* Fixed Gutenberg compatibility issues
|
114 |
|
115 |
== Upgrade Notice ==
|
116 |
|
117 |
+
= 1.1.4 =
|
118 |
+
* Fixed compatibility issue with The Events Calendar
|
119 |
+
|
120 |
= 1.1.3 =
|
121 |
* Fixed WordPress 5 compatibility issues
|
122 |
* Fixed Gutenberg compatibility issues
|
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
|
@@ -45,7 +45,7 @@ if(!class_exists('Wpacc'))
|
|
45 |
add_action('init', array($this, 'init'));
|
46 |
add_filter('query_vars', array($this, 'add_wp_var'));
|
47 |
add_action( 'wp_enqueue_scripts', array($this, 'add_custom_css'), 9999 );
|
48 |
-
add_action('wp_head', array($this, 'single_custom_css'),
|
49 |
}
|
50 |
|
51 |
public function init() {
|
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.4
|
7 |
Author: Daniele De Santis
|
8 |
Author URI: http://www.danieledesantis.net
|
9 |
Text Domain: wp-add-custom-css
|
45 |
add_action('init', array($this, 'init'));
|
46 |
add_filter('query_vars', array($this, 'add_wp_var'));
|
47 |
add_action( 'wp_enqueue_scripts', array($this, 'add_custom_css'), 9999 );
|
48 |
+
add_action('wp_head', array($this, 'single_custom_css'), 99 );
|
49 |
}
|
50 |
|
51 |
public function init() {
|