Last active
November 6, 2020 15:19
-
-
Save thefuxia/3521964 to your computer and use it in GitHub Desktop.
T5 Force Log In
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php # -*- coding: utf-8 -*- | |
/** | |
* Plugin Name: T5 Force Log In | |
* Description: Grant access after log in only | |
* Plugin URI: http://toscho.de/?p=2207 | |
* Version: 2012.08.28 | |
* Author: Thomas Scholz | |
* Author URI: http://toscho.de | |
* License: MIT | |
* License URI: http://www.opensource.org/licenses/mit-license.php | |
*/ | |
add_action( 'template_redirect', function() { | |
is_user_logged_in() || auth_redirect(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you got a customized login page via front-end, you need to modify code as:
or you will get a redirect error.