Skip to content

Instantly share code, notes, and snippets.

@eduard-un
Created April 19, 2016 20:12
Show Gist options
  • Save eduard-un/356adf8a2956128591481a951a69ba6b to your computer and use it in GitHub Desktop.
Save eduard-un/356adf8a2956128591481a951a69ba6b to your computer and use it in GitHub Desktop.
<?php
//Don't include <?php if your functions.php file alread has it.
add_filter('site_url', 'wplogin_filter', 10, 3);
function wplogin_filter( $url, $path, $orig_scheme ) {
$old = array( "/(wp-login.php)/");
$new = array( "login");
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