Skip to content

Instantly share code, notes, and snippets.

@mototeam
Created June 14, 2017 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mototeam/9137cef5ace249833ce462b4bbb6ec0a to your computer and use it in GitHub Desktop.
Save mototeam/9137cef5ace249833ce462b4bbb6ec0a to your computer and use it in GitHub Desktop.
motopress content editor - dequeue styles
add_action( 'wp_print_styles', 'my_theme_wp_print_styles' );
function my_theme_wp_print_styles() {
if ( is_front_page() ) {
wp_dequeue_style('mpce-theme');
wp_dequeue_style('mpce-bootstrap-grid');
wp_dequeue_style('mpce-font-awesome');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment