嗨,我已经建立了多站点,我是超级管理员。我想删除“编辑器”添加新页面的功能。我对我的主题功能做了这个更改,它也删除了我想要的内容,但是它也删除了按钮和子菜单“我的管理员用户”。我试着if
条件,但运气不太好!
//hide Page
function hide_buttons()
{
global $current_screen;
if($current_screen->id == \'page\');
{
echo \'<style>.add-new-h2, a.page-title-action {display: none;}</style>\';
}
!current_user_can(\'publish_posts\'))
}
add_action(\'admin_head\',\'hide_buttons\'); // removes the "add new" button on Pages page.
if( current_user_can(\'editor\') ) {
add_action( \'admin_menu\', function () {
remove_submenu_page( \'edit.php?post_type=page\', \'post-new.php post_type=page\' ); //removes the sub page "add new" in Admin side bar for editor
}, 999);
}