Created
June 24, 2014 12:32
-
-
Save renestalder/047130ba17c679c0033f to your computer and use it in GitHub Desktop.
WordPress redirect if not logged in or public available site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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