Skip to content

Instantly share code, notes, and snippets.

@Artisan-Asad
Created September 15, 2022 21:21
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 Artisan-Asad/ddadafdfe45c7938748226c7b8864bfe to your computer and use it in GitHub Desktop.
Save Artisan-Asad/ddadafdfe45c7938748226c7b8864bfe to your computer and use it in GitHub Desktop.
WordPress Force Login
/**
* Force login.
*/
add_action('template_redirect', function () {
if (!is_user_logged_in() && !is_404()) {
auth_redirect();
exit;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment