Skip to content

Instantly share code, notes, and snippets.

@jerrickhakim
Created March 21, 2018 18:10
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 jerrickhakim/4c0358aaf286e2bbb4a8425af1ea66fe to your computer and use it in GitHub Desktop.
Save jerrickhakim/4c0358aaf286e2bbb4a8425af1ea66fe to your computer and use it in GitHub Desktop.
WordPress Login URL Redirect
function jh_from_wp_login() {
$login_url = '/login';
wp_redirect( esc_url_raw( $login_url ) ); exit;
}
add_action( 'login_form_login', 'jh_from_wp_login' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment