Changeset 1468772
- Timestamp:
- 08/05/2016 04:37:10 PM (10 years ago)
- Location:
- wp-dynamic-css
- Files:
-
- 11 added
- 1 edited
-
tags/1.0.5 (added)
-
tags/1.0.5/LICENSE (added)
-
tags/1.0.5/README.md (added)
-
tags/1.0.5/bootstrap.php (added)
-
tags/1.0.5/cache.php (added)
-
tags/1.0.5/compiler.php (added)
-
tags/1.0.5/composer.json (added)
-
tags/1.0.5/functions.php (added)
-
tags/1.0.5/readme.txt (added)
-
tags/1.0.5/style.phtml (added)
-
tags/1.0.5/tests.php (added)
-
trunk/readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-dynamic-css/trunk/readme.txt
r1450243 r1468772 3 3 Tags: dynamic css, css, customizer, get_theme_mod, css variables, css compiler 4 4 Requires at least: 3.0 5 Tested up to: 4.5. 16 Stable tag: 1.0. 45 Tested up to: 4.5.3 6 Stable tag: 1.0.5 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 32 32 function my_dynamic_css_callback( $var_name ) 33 33 { 34 return get_theme_mod($var_name);34 return get_theme_mod($var_name); 35 35 } 36 36 wp_dynamic_css_set_callback( 'my_dynamic_style', 'my_dynamic_css_callback' ); … … 43 43 <pre> 44 44 body { 45 background-color: $body_bg_color;45 background-color: $body_bg_color; 46 46 } 47 47 </pre> … … 53 53 <pre> 54 54 body { 55 background-color: #fff; 55 background-color: #fff; 56 } 57 </pre> 58 59 There's even support for array subscripts and piped filters: 60 61 <pre> 62 body { 63 background-color: $myVar['index']; 64 color: $myVar|myFilter; 56 65 } 57 66 </pre> … … 70 79 71 80 == Changelog == 81 82 = 1.0.5 = 83 * (NEW) Added support for cache 84 * (NEW) Added support for piped filters 85 * (FIX) Separated enqueued stylesheets 86 * (FIX) Increased priority of enqueued stylesheets to override static stylesheets 72 87 73 88 = 1.0.4 =
Note: See TracChangeset
for help on using the changeset viewer.