Skip to content

Instantly share code, notes, and snippets.

@chetansatasiya
Created June 19, 2017 11:17
Show Gist options
  • Select an option

  • Save chetansatasiya/6e0dc08dd695a2096d3fd8709385858e to your computer and use it in GitHub Desktop.

Select an option

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