强制隐藏自定义字段元数据 时间:2012-07-27 作者:zagriyen 如何在不删除使用PHP函数添加自定义字段的功能的情况下,完全删除编辑帖子/编辑页面自定义屏幕中的自定义字段和折叠按钮? 2 个回复 最合适的回答,由SO网友:nvwd 整理而成 http://codex.wordpress.org/Function_Reference/remove_meta_boxfunction remove_custom_meta_form() { remove_meta_box( \'postcustom\', \'post\', \'normal\' ); remove_meta_box( \'postcustom\', \'page\', \'normal\' ); } add_action( \'admin_menu\' , \'remove_custom_meta_form\' ); HTH SO网友:Steve Taylor 以下是所有帖子类型的操作方法:add_action( \'do_meta_boxes\', \'remove_default_custom_fields_meta_box\', 1, 3 ); function remove_default_custom_fields_meta_box( $post_type, $context, $post ) { remove_meta_box( \'postcustom\', $post_type, $context ); } 结束 文章导航