Created
August 15, 2019 16:54
-
-
Save corypina/6c85cc6e8ba027daaf6a6bc40f97be50 to your computer and use it in GitHub Desktop.
Prevent all users from accessing the native Login and Registration page.
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 | |
| // Prevent users from accessing the native Login and Registration page | |
| // NOTE: This will prevent *everyone* from logging in through the standard channel. | |
| // Even you. | |
| add_action( 'login_init', function () { | |
| if( ! is_user_logged_in() ) { | |
| // redirects to homepage | |
| wp_redirect( '/' ); | |
| exit; | |
| } | |
| }); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment