Skip to content

Instantly share code, notes, and snippets.

@nacin
Forked from nathanrice/prying-eyes.php
Last active December 12, 2015 12:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save nacin/4774084 to your computer and use it in GitHub Desktop.
Save nacin/4774084 to your computer and use it in GitHub Desktop.
<?php
//** Redirect if not logged in
add_action( 'template_redirect', function() {
if ( ! is_user_logged_in() ) {
wp_redirect( wp_login_url() );
exit;
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment