Skip to content

Instantly share code, notes, and snippets.

@csknk
Forked from mattonomics/prying-eyes.php
Created October 8, 2013 18:19
Show Gist options
  • Save csknk/6889092 to your computer and use it in GitHub Desktop.
Save csknk/6889092 to your computer and use it in GitHub Desktop.
<?php
// fancy PHP 5.3+ style
add_action( 'template_redirect', function() {
if ( ! is_user_logged_in() ) {
wp_redirect( wp_login_url() );
exit;
}
} );
// and <PHP 5.3 style
if ( ! is_user_logged_in() && 'wp-login.php' !== $pagenow ) {
wp_redirect( wp_login_url() );
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment