Skip to content

Instantly share code, notes, and snippets.

@mavisland
Created February 27, 2014 16:47
Show Gist options
  • Save mavisland/9254007 to your computer and use it in GitHub Desktop.
Save mavisland/9254007 to your computer and use it in GitHub Desktop.
This little snippet will change the title attribute text when you hover over the wordpress logo on the login page. If you want to replace the logo take a look at this snippet it will remove the wordpress logo.
<?php
function custom_login_title() {
return get_option('blogname');
}
add_filter('login_headertitle', 'custom_login_title');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment