Skip to content

Instantly share code, notes, and snippets.

View Artisan-Asad's full-sized avatar
Reverse engineering

Asad Shahbaz Artisan-Asad

Reverse engineering
View GitHub Profile
/**
* Force login.
*/
add_action('template_redirect', function () {
if (!is_user_logged_in() && !is_404()) {
auth_redirect();
exit;
}
});