Skip to content

Instantly share code, notes, and snippets.

@chetansatasiya
Created June 19, 2017 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chetansatasiya/6e0dc08dd695a2096d3fd8709385858e to your computer and use it in GitHub Desktop.
Save chetansatasiya/6e0dc08dd695a2096d3fd8709385858e to your computer and use it in GitHub Desktop.
How to Change the Login Logo URL in WordPress
<?php
add_filter( 'login_headerurl', 'custom_loginlogo_url' );
function custom_loginlogo_url($url) {
return 'http://www.wordpress.com';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment