在管理员级别以下的用户隐藏页面编辑器上的页面属性

时间:2013-09-17 18:46:54

标签: wordpress

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

谢谢

1 个答案:

答案 0 :(得分:3)

你可以试试这个

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文件中。