/*
* Function for auto login after register
*/
function auto_login_new_user($user_id) {
wp_set_current_user($user_id);
wp_set_auth_cookie($user_id);
wp_redirect(home_url('/checkout'));
exit;
}
add_action('user_register', 'auto_login_new_user');
Show Comments
