Skip to content

Instantly share code, notes, and snippets.

@teolopez
Created January 18, 2014 09:57
Show Gist options
  • Save teolopez/8488389 to your computer and use it in GitHub Desktop.
Save teolopez/8488389 to your computer and use it in GitHub Desktop.
Change the WP Logo Link to your site and the text in the tooltip.
function myprefix_loginpage_custom_link() {
return get_bloginfo( 'url' );
}
add_filter('login_headerurl','myprefix_loginpage_custom_link');
function myprefix_change_title_on_logo() {
return 'My Tooltip';
}
add_filter('login_headertitle', 'myprefix_change_title_on_logo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment