Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Created June 18, 2020 11:27
Show Gist options
  • Save cryptexvinci/985104b8f7af8e3b4c865eba734ffe97 to your computer and use it in GitHub Desktop.
Save cryptexvinci/985104b8f7af8e3b4c865eba734ffe97 to your computer and use it in GitHub Desktop.
<?php
add_action( 'init', 'hide_secure_wp_admin' );
function hide_secure_wp_admin() {
if ( is_admin() || $GLOBALS['pagenow'] === 'wp-login.php' ) {
// Non logged in users.
if ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) ) {
wp_redirect( um_get_core_page('login') );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment