Skip to content

Instantly share code, notes, and snippets.

@iladarsda
Created February 7, 2014 10:27
Show Gist options
  • Save iladarsda/8860326 to your computer and use it in GitHub Desktop.
Save iladarsda/8860326 to your computer and use it in GitHub Desktop.
WordPress login page, disable wordpress logo
// Login Page - No logo
function new_custom_login_logo() {
echo "<style type='text/css'>h1 { display: none !important; } </style>";
}
add_action('login_head', 'new_custom_login_logo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment