Created
October 25, 2013 06:52
-
-
Save javierarques/7150398 to your computer and use it in GitHub Desktop.
Unregister wp-login default css
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
function remove_wp_login_styles () { | |
add_filter( 'style_loader_tag', '__return_null' ); | |
} | |
add_action( 'login_init', 'remove_wp_login_styles'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment