Skip to content

Instantly share code, notes, and snippets.

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 alenabdula/cb1d06743e42d8d77173 to your computer and use it in GitHub Desktop.
Save alenabdula/cb1d06743e42d8d77173 to your computer and use it in GitHub Desktop.
Redirect Non-Users
<?php
add_action( 'init', 'block_access_to_wp_dashboard_init' );
/**
*
*/
function block_access_to_wp_dashboard_init() {
if ( is_admin() && ! current_user_can( 'edit_users' ) && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
wp_redirect( home_url() );
exit;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment