Created
June 14, 2017 08:01
-
-
Save mototeam/9137cef5ace249833ce462b4bbb6ec0a to your computer and use it in GitHub Desktop.
motopress content editor - dequeue styles
This file contains hidden or 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
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