Skip to content

Instantly share code, notes, and snippets.

@javierarques
Created October 25, 2013 06:52
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 javierarques/7150398 to your computer and use it in GitHub Desktop.
Save javierarques/7150398 to your computer and use it in GitHub Desktop.
Unregister wp-login default css
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