function remove_menus(){ $author = wp_get_current_user(); if(isset($author->roles[0])){ $current_role = $author->roles[0];} else{ $current_role = 'no_role'; } if($current_role == 'contributor'){ remove_menu_page( 'index.php' ); //Dashboard remove_menu_page( 'edit.php' ); //Posts remove_menu_page( 'upload.php' ); //Media remove_menu_page( 'tools.php' ); //Tools remove_menu_page( 'edit-comments.php' ); //Comments } } add_action( 'admin_menu', 'remove_menus' );
Aller au contenu