Skip to content

Instantly share code, notes, and snippets.

@renestalder
Created June 24, 2014 12:32
Show Gist options
  • Save renestalder/047130ba17c679c0033f to your computer and use it in GitHub Desktop.
Save renestalder/047130ba17c679c0033f to your computer and use it in GitHub Desktop.
WordPress redirect if not logged in or public available site
<?php
function redirect_beta() {
if ( !is_user_logged_in() && !is_page('slug or page ID') && $_SERVER['PHP_SELF'] != '/wp-admin/admin-ajax.php' ) {
wp_redirect( 'http://example.com', 302);
exit;
}
}
add_action( 'template_redirect', 'redirect_beta' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment