Skip to content

Instantly share code, notes, and snippets.

@aimahdi
Created December 4, 2021 15:28
Show Gist options
  • Save aimahdi/2e23e7c1c3d15cb1fa77d35a6083862e to your computer and use it in GitHub Desktop.
Save aimahdi/2e23e7c1c3d15cb1fa77d35a6083862e 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