Skip to content

Instantly share code, notes, and snippets.

@cdcarson
Last active December 31, 2015 21:09
Show Gist options
  • Save cdcarson/8045158 to your computer and use it in GitHub Desktop.
Save cdcarson/8045158 to your computer and use it in GitHub Desktop.
filter the url to which the login header points
<?php
add_filter(
'login_headerurl',
function($url){
return get_bloginfo('url');
}, 10, 1
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment