Skip to content

Instantly share code, notes, and snippets.

@imvaskii
Created March 13, 2015 06:06
Show Gist options
  • Save imvaskii/c94f3b01d293b4b07aa5 to your computer and use it in GitHub Desktop.
Save imvaskii/c94f3b01d293b4b07aa5 to your computer and use it in GitHub Desktop.
Restrict non admin users to wp-admin
<?php
add_action('admin_init', 'no_mo_dashboard');
function no_mo_dashboard() {
if (!current_user_can('manage_options') && $_SERVER['DOING_AJAX'] != '/wp-admin/admin-ajax.php') {
wp_redirect(home_url()); exit;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment