Skip to content

Instantly share code, notes, and snippets.

@BFTrick
Created September 24, 2012 21:41
Show Gist options
  • Save BFTrick/3778581 to your computer and use it in GitHub Desktop.
Save BFTrick/3778581 to your computer and use it in GitHub Desktop.
Dequeue CSS From Plugins
//dequeue css from plugins
add_action('wp_print_styles', 'mytheme_dequeue_css_from_plugins', 100);
function mytheme_dequeue_css_from_plugins() {
wp_dequeue_style( "plugin-css-file-handle" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment