您可以在屏幕选项下拉列表(基于每个用户)中隐藏它们,如果这是您要查找的内容:
您还可以使用
remove_meta_box
此处可见:
https://codex.wordpress.org/Function_Reference/remove_meta_box因此,根据自定义框的HTML ID是什么,您可以添加一个函数。假设客户端类型是client-types
, 然后,以下步骤可以实现:
function remove_post_custom_fields() {
remove_meta_box( \'client-types\' , \'post\' , \'normal\' );
}
add_action( \'admin_menu\' , \'remove_post_custom_fields\' );
这将在Post屏幕中为所有用户隐藏它。