删除Meta-box(Yoast SEO插件)

时间:2012-10-30 作者:user23076

Possible Duplicate:
WordPress SEO by Yoast: Hide Meta boxes in posts for non-admins

我想知道如何从贴子页面中删除元框。我希望只有管理员或编辑才能看到这些。我在论坛上看到了类似的话题,但似乎没有一个奏效。有什么建议吗?

1 个回复
SO网友:Adam

See WordPress SEO by Yoast: Hide Meta boxes in posts for non-admins

add_action(\'add_meta_boxes\', \'yoast_is_toast\', 99);
function yoast_is_toast(){
    //capability of \'manage_plugins\' equals admin, therefore if NOT administrator
    //hide the meta box from all other roles on the following \'post_type\' 
    //such as post, page, custom_post_type, etc
    if (!current_user_can(\'activate_plugins\')) {
        remove_meta_box(\'wpseo_meta\', \'post_type\', \'normal\');
    }
}
结束

相关推荐

仅在登录屏幕上取消注册默认wp-admin css?

我有一个关于在登录屏幕上取消注册“wp admin”样式的问题。如果我只是在全球范围内运行:<?php wp_deregister_style( \'wp-admin\' ); ?> 我的登录屏幕将没有样式。如果我运行以下函数:function remove_default_styles() { wp_deregister_style( \'wp-admin\' ); } add_action( \'admin_enqueue_scripts\', \