Skip to content

Instantly share code, notes, and snippets.

@corypina
Created August 15, 2019 16:54
Show Gist options
  • Select an option

  • Save corypina/6c85cc6e8ba027daaf6a6bc40f97be50 to your computer and use it in GitHub Desktop.

Select an option

Save corypina/6c85cc6e8ba027daaf6a6bc40f97be50 to your computer and use it in GitHub Desktop.
Prevent all users from accessing the native Login and Registration page.
<?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