WordPress Redirect to Previous Page on Login
<?php | |
function my_login_redirect( $redirect_to, $request, $user ) { | |
$redirect_to = home_url() . '/members/'; | |
return $redirect_to; | |
} | |
add_filter( 'login_redirect', 'my_login_redirect', 10, 3 ); |
<?php | |
if ( (isset($_GET['action']) && $_GET['action'] != 'logout') || (isset($_POST['login_location']) && !empty($_POST['login_location'])) ) { | |
add_filter('login_redirect', 'my_login_redirect', 10, 3); | |
function my_login_redirect() { | |
$location = $_SERVER['HTTP_REFERER']; | |
wp_safe_redirect($location); | |
exit(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
does it support redirect user to previous page? In multsites? How use these code?