wp-user-manager
wp-user-manager copied to clipboard
User switching plugin not working when switching back
Could not switch users.
When the setting to disable wp-login.php is on
https://github.com/johnbillion/user-switching/issues/14
add_action('wp_die_handler', function($handler) {
parse_str($_SERVER['QUERY_STRING'], $query);
if ( $query['action'] === 'switch_to_olduser' ) {
wp_redirect(get_bloginfo('wpurl') . $_SERVER['REQUEST_URI']);
exit;
}
return $handler;
});
Did you manage to recreate @reygcalantaol?