Created
April 14, 2016 12:37
-
-
Save xianyangwong/149b4f9f44f8569c67549f2973794751 to your computer and use it in GitHub Desktop.
Change Wordpress login logo url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'login_headerurl', 'custom_loginlogo_url' ); | |
function custom_loginlogo_url($url) { | |
return 'http://www.wpbeginner.com'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment