Version Description
- 8/26/2014 =
- Fixed:
stripslashes
error when using customizer.
Download this release
Release Info
Developer | themejunkie |
Plugin | TJ Custom CSS |
Version | 0.1.2 |
Comparing to | |
See all releases |
Code changes from version 0.1.1 to 0.1.2
- admin/customize.php +1 -2
- readme.txt +4 -1
- tj-custom-css.php +1 -1
admin/customize.php
CHANGED
@@ -40,8 +40,7 @@ function tjcc_register_customize( $wp_customize ) {
|
|
40 |
$wp_customize->add_setting( 'tj_custom_css[custom_css]' ,
|
41 |
array(
|
42 |
'type' => 'option',
|
43 |
-
'capability' => 'edit_theme_options'
|
44 |
-
'sanitize_callback' => 'stripslashes'
|
45 |
)
|
46 |
);
|
47 |
|
40 |
$wp_customize->add_setting( 'tj_custom_css[custom_css]' ,
|
41 |
array(
|
42 |
'type' => 'option',
|
43 |
+
'capability' => 'edit_theme_options'
|
|
|
44 |
)
|
45 |
);
|
46 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: themejunkie, satrya
|
|
3 |
Tags: custom css, customizer, css, style, theme, child theme
|
4 |
Requires at least: 3.6
|
5 |
Tested up to: 3.9.2
|
6 |
-
Stable tag: 0.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -64,6 +64,9 @@ Yes, this plugin was developed to support all themes.
|
|
64 |
|
65 |
== Changelog ==
|
66 |
|
|
|
|
|
|
|
67 |
= 0.1.1 - 8/18/2014 =
|
68 |
* Allow html entities in css selector eg. `#id > .class`
|
69 |
|
3 |
Tags: custom css, customizer, css, style, theme, child theme
|
4 |
Requires at least: 3.6
|
5 |
Tested up to: 3.9.2
|
6 |
+
Stable tag: 0.1.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
64 |
|
65 |
== Changelog ==
|
66 |
|
67 |
+
= 0.1.2 - 8/26/2014 =
|
68 |
+
* Fixed: `stripslashes` error when using customizer.
|
69 |
+
|
70 |
= 0.1.1 - 8/18/2014 =
|
71 |
* Allow html entities in css selector eg. `#id > .class`
|
72 |
|
tj-custom-css.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Theme Junkie Custom CSS
|
4 |
* Plugin URI: http://www.theme-junkie.com/
|
5 |
* Description: Easily to add custom css code to your site.
|
6 |
-
* Version: 0.1.
|
7 |
* Author: Theme Junkie
|
8 |
* Author URI: http://www.theme-junkie.com/
|
9 |
* Author Email: satrya@theme-junkie.com
|
3 |
* Plugin Name: Theme Junkie Custom CSS
|
4 |
* Plugin URI: http://www.theme-junkie.com/
|
5 |
* Description: Easily to add custom css code to your site.
|
6 |
+
* Version: 0.1.2
|
7 |
* Author: Theme Junkie
|
8 |
* Author URI: http://www.theme-junkie.com/
|
9 |
* Author Email: satrya@theme-junkie.com
|