Skip to content

Instantly share code, notes, and snippets.

@lunaroja
Last active September 15, 2016 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lunaroja/8b6428bd78eaab85aba33d0699a77850 to your computer and use it in GitHub Desktop.
Save lunaroja/8b6428bd78eaab85aba33d0699a77850 to your computer and use it in GitHub Desktop.
require login to see wordpress site
<?php
function login_redirect() {
global $pagenow;
if(!is_user_logged_in() && $pagenow != 'wp-login.php') {
auth_redirect();
} else {
return site_url();
}
}
add_action( 'wp', 'login_redirect' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment