Skip to content

Instantly share code, notes, and snippets.

@stickhandle
Forked from nacin/prying-eyes.php
Created February 13, 2013 02:37
Show Gist options
  • Save stickhandle/4913119 to your computer and use it in GitHub Desktop.
Save stickhandle/4913119 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