Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Created August 5, 2016 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jennimckinnon/5a1131d5b8e31cf65b26fcda588369ec to your computer and use it in GitHub Desktop.
Save jennimckinnon/5a1131d5b8e31cf65b26fcda588369ec to your computer and use it in GitHub Desktop.
add_filter('site_url', 'wplogin_filter', 10, 3);
function wplogin_filter( $url, $path, $orig_scheme )
{
$old = array( "/(wp-login\.php)/");
$new = array( "myprivatelogin");
return preg_replace( $old, $new, $url, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment