有没有办法隐藏管理级别以下用户的页面属性? (例如,我不希望具有编辑级别的用户能够更改页面模板)。
谢谢
答案 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
文件中。