Skip to content

Instantly share code, notes, and snippets.

@danielhomer
Created February 11, 2015 15:17
Show Gist options
  • Save danielhomer/44dd62b68c0a2244f767 to your computer and use it in GitHub Desktop.
Save danielhomer/44dd62b68c0a2244f767 to your computer and use it in GitHub Desktop.
Force login on WP
<?php
function force_login() {
if ( ! is_user_logged_in() ) {
wp_safe_redirect( wp_login_url(), 301 );
exit();
}
}
add_action( 'template_redirect', 'force_login' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment