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