I saw this snippet to remove menus:
function remove_menus () {
global $menu;
$restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins'));
end ($menu);
while (prev($menu)){
$value = explode(' ',$menu[key($menu)][0]);
if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);}
}
}
add_action('admin_menu', 'remove_menus');
Is there a way to restrict specific menus, but just for the "editor role"?
I tried something like:
$_the_roles = new WP_Roles();
$_the_roles->remove_cap('editor','moderate_comments');
But I still see the comments menu...