Skip to content

Instantly share code, notes, and snippets.

@xianyangwong
Created April 14, 2016 12:37
Show Gist options
  • Save xianyangwong/149b4f9f44f8569c67549f2973794751 to your computer and use it in GitHub Desktop.
Save xianyangwong/149b4f9f44f8569c67549f2973794751 to your computer and use it in GitHub Desktop.
Change Wordpress login logo url
<?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