Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp126/5f9bc4901f9444544b56f620d41513a2 to your computer and use it in GitHub Desktop.
Save wp126/5f9bc4901f9444544b56f620d41513a2 to your computer and use it in GitHub Desktop.
<?php
add_action('wp', 'mysialus');
function mysialus(){
if(!is_admin()){
if(!is_user_logged_in()){
if(!is_page(1587)){
wp_redirect( get_permalink(1587));
exit;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment