-2

有没有办法对管理员级别以下的用户隐藏页面属性?(例如,我不希望具有编辑级别的用户能够更改页面模板)。

谢谢你

4

1 回答 1

5

你可以试试这个

function remove_page_attribute_meta_box()
{
    if( is_admin() ) {
        if( current_user_can('editor') ) {
            remove_meta_box('pageparentdiv', 'page', 'normal');
        }
    }
}
add_action( 'admin_menu', 'remove_page_attribute_meta_box' );

将其粘贴到您的主题functions.php文件中。

于 2013-09-17T19:21:14.573 回答