Don't generate for admin
-
For some reason the generated file is also included for the admin section.
I removed it with the help of is_admin() function:
/**
* SASS/SCSS Stylesheet Definition.
*/
function generate_css() {
if(function_exists(‘wpsass_define_stylesheet’) && !is_admin()) {
wpsass_define_stylesheet(“mystyle.scss”, true);
}
}
add_action(‘after_setup_theme’, ‘generate_css’ );
- The topic ‘Don't generate for admin’ is closed to new replies.