Created
April 13, 2016 09:19
-
-
Save khoipro/f03c7b9f5cf0d6acd140a58619519884 to your computer and use it in GitHub Desktop.
Remove default stylesheets from frontend WordPress
This file contains 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
// remove auto stylesheet from admin + wp | |
add_action( 'wp_print_styles', 'my_deregister_styles', 100 ); | |
function my_deregister_styles() { | |
wp_deregister_style( 'dashicons' ); | |
wp_deregister_style( 'admin-bar' ); | |
wp_deregister_style( 'open-sans' ); | |
wp_deregister_style( 'boxes' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment