如何在管理员添加帖子页面中对用户隐藏某些分类框?

时间:2015-11-27 作者:Andrew Welch

我想在添加新帖子页面的管理中隐藏这个特定的分类框。

enter image description here

2 个回复
最合适的回答,由SO网友:Andrew Welch 整理而成

以下内容在功能方面对我有用。php

/**
 * [remove_meta_boxes remove the resource type standard meta box from the side sortables in the resource post edit screen
 * @return [type] [description]
 */
function remove_meta_boxes(){
remove_meta_box( \'resourcetypesdiv\', \'resource\',\'side\'  );
}
add_action( \'admin_menu\', __NAMESPACE__ . \'\\\\remove_meta_boxes\');

SO网友:jas

嗨,我假设在添加新帖子时它是你的元框:

请转到http://www.example.com/wp-admin/post-new.php 在新的帖子表单顶部有一些屏幕选项,比如屏幕截图,您可以根据可用选项隐藏内容。

enter image description here

您可以在post表单中取消选中不需要的内容。

我们也可以按代码删除,请遵循此有用的帖子了解详细信息:

Remove Wordpress Meta Boxes - WPMUDev.org