Created
May 10, 2018 13:01
-
-
Save torbentschechne/4475ebfa0b1b36f6b7edb5f3e90f056d to your computer and use it in GitHub Desktop.
Deregister / Dequeue Styles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function custom_dequeue() { | |
wp_dequeue_style('default_body_font'); | |
wp_deregister_style('default_body_font'); | |
wp_dequeue_style('default_heading_font'); | |
wp_deregister_style('default_heading_font'); | |
} | |
add_action( 'wp_print_styles', 'custom_dequeue', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment