Skip to content

Instantly share code, notes, and snippets.

@setuix
Created July 12, 2014 02:08
Show Gist options
  • Save setuix/e91cb8be50cf3f3e52f2 to your computer and use it in GitHub Desktop.
Save setuix/e91cb8be50cf3f3e52f2 to your computer and use it in GitHub Desktop.
function my_login_logo_url() {
return get_bloginfo( 'url' );
}
add_filter( 'login_headerurl', 'my_login_logo_url' );
function my_login_logo_url_title() {
return 'Your Site Name and Info';
}
add_filter( 'login_headertitle', 'my_login_logo_url_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment