Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Created February 3, 2013 01:12
Show Gist options
  • Save eugenoprea/4700057 to your computer and use it in GitHub Desktop.
Save eugenoprea/4700057 to your computer and use it in GitHub Desktop.
How to Change the WordPress Login Logo URL
/** Change Powered by WordPress */
add_filter('login_headertitle', 'eo_login_logo_url_desc');
function eo_login_logo_url_desc()
{
return bloginfo('name');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment