Skip to content

Instantly share code, notes, and snippets.

@MatRouault
Created May 12, 2015 11:39
Show Gist options
  • Save MatRouault/e1005bc48e448af97386 to your computer and use it in GitHub Desktop.
Save MatRouault/e1005bc48e448af97386 to your computer and use it in GitHub Desktop.
Deregister CSS
//* Deregister CSS from Events Manager & Buddypress Docs Plugins
//* http://justintadlock.com/archives/2009/08/06/how-to-disable-scripts-and-styles
add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
function my_deregister_styles() {
wp_deregister_style( 'events-manager' );
wp_deregister_style( 'bp-docs-css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment