Created
January 18, 2014 09:57
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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