Skip to content

Instantly share code, notes, and snippets.

@mavisland
Last active August 29, 2015 13:56
Show Gist options
  • Save mavisland/9134010 to your computer and use it in GitHub Desktop.
Save mavisland/9134010 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.
<?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