Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Last active November 1, 2016 08:24
Show Gist options
  • Save eugenoprea/4700062 to your computer and use it in GitHub Desktop.
Save eugenoprea/4700062 to your computer and use it in GitHub Desktop.
How to Change the WordPress Login Logo URL
/** Change the WordPress Login Logo URL */
add_filter('login_headerurl', 'eo_login_logo_url');
function eo_login_logo_url()
{
return bloginfo('url');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment