Skip to content

Instantly share code, notes, and snippets.

@aanomm
Created July 18, 2012 03:09
Show Gist options
  • Save aanomm/3133911 to your computer and use it in GitHub Desktop.
Save aanomm/3133911 to your computer and use it in GitHub Desktop.
WP: SECURITY > protect_whole_site
function protect_whole_site() {
if ( !is_user_logged_in() ) {
auth_redirect();
}
}
add_action ('template_redirect', 'protect_whole_site');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment