Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save torbentschechne/4475ebfa0b1b36f6b7edb5f3e90f056d to your computer and use it in GitHub Desktop.
Save torbentschechne/4475ebfa0b1b36f6b7edb5f3e90f056d to your computer and use it in GitHub Desktop.
Deregister / Dequeue Styles
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