File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2020 * Domain Path: /languages
2121 */
2222
23- require_once 'renderer .php ' ;
23+ require_once 'compiler .php ' ;
2424
2525if ( !function_exists ('wp_dynamic_css_enqueue ' ) )
2626{
3434 */
3535 function wp_dynamic_css_enqueue ( $ path )
3636 {
37- $ dcss = DynamicCSSRenderer ::get_instance ();
37+ $ dcss = DynamicCSSCompiler ::get_instance ();
3838 $ dcss ->enqueue_style ( $ path );
3939 }
4040}
Original file line number Diff line number Diff line change 88 */
99
1010/**
11- * Dynamic CSS Renderer Utility Class
11+ * Dynamic CSS Compiler Utility Class
1212 *
1313 *
1414 * Dynamic CSS Syntax
2121 * is passed the variable name without the dollar sign, which can be used with
2222 * get_option() or get_theme_mod() etc.
2323 */
24- class DynamicCSSRenderer
24+ class DynamicCSSCompiler
2525{
2626 /**
2727 * @var Singleton The reference to *Singleton* instance of this class
@@ -50,7 +50,7 @@ public static function get_instance()
5050 }
5151
5252 /**
53- * Initiate the renderer by hooking to wp_print_styles
53+ * Initiate the compiler by hooking to wp_print_styles
5454 */
5555 public function init ()
5656 {
You can’t perform that action at this time.
0 commit comments