Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Last active August 29, 2015 14:01
Show Gist options
  • Save jonbellah/b1c27114628680dd25b1 to your computer and use it in GitHub Desktop.
Save jonbellah/b1c27114628680dd25b1 to your computer and use it in GitHub Desktop.
Password Protect WordPress
/**
* Redirect non logged in users to the login page
*/
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