remove css script
-
I’m not using the dynamic css feature so I wanted to not load the ebs_dynamic_css stylesheet.
I tried using this but it did not remove it:add_action( ‘wp_enqueue_scripts’, ‘remove_ebs_stylesheet’, 20 );
function remove_ebs_stylesheet() {
wp_dequeue_style( ‘ebs_dynamic_css’ );
wp_deregister_style( ‘ebs_dynamic_css’ );}
any suggestions?
The topic ‘remove css script’ is closed to new replies.