Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pije76/dd1f277ea0c3e5dbc1b5aa89f5f73d8e to your computer and use it in GitHub Desktop.
Save pije76/dd1f277ea0c3e5dbc1b5aa89f5f73d8e to your computer and use it in GitHub Desktop.
// Block Non-Admins from Accessing Dashboard
function blockusers_init() {
if ( is_admin() && ! current_user_can( 'administrator' ) && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
wp_redirect( home_url() );
exit;
}
}
add_action( 'init', 'blockusers_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment