How to deregister style
-
Hello, I would like to deregister all styles used by hustle. Vanilla theme isn’t enough for me. I’ve tried but it doesn’t work for me:
function dequeue_my_css() { wp_deregister_style( 'hustle_icons' ); wp_deregister_style( 'hustle_global' ); wp_deregister_style( 'hustle_optin' ); wp_deregister_style( 'hustle_inline' ); wp_dequeue_style( 'hustle_icons' ); wp_dequeue_style( 'hustle_global' ); wp_dequeue_style( 'hustle_optin' ); wp_dequeue_style( 'hustle_inline' ); } add_action('wp_enqueue_scripts','dequeue_my_css', 100);
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to deregister style’ is closed to new replies.