Skip to content

Instantly share code, notes, and snippets.

@aimahdi
Created December 4, 2021 15:31
Show Gist options
  • Save aimahdi/6784fe8b1380dc0c0b55e559d45cc151 to your computer and use it in GitHub Desktop.
Save aimahdi/6784fe8b1380dc0c0b55e559d45cc151 to your computer and use it in GitHub Desktop.
function add_login_check()
{
if (is_user_logged_in()) {
if (is_page(200)){
wp_redirect('https://dev-mahdii.pantheonsite.io/');
exit;
}
}
}
add_action('wp', 'add_login_check');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment