强制隐藏自定义字段元数据

时间:2012-07-27 作者:zagriyen

如何在不删除使用PHP函数添加自定义字段的功能的情况下,完全删除编辑帖子/编辑页面自定义屏幕中的自定义字段和折叠按钮?

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

http://codex.wordpress.org/Function_Reference/remove_meta_box

function 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 );
}

结束

相关推荐

将wp_EDITOR添加到自定义Metabox

我正在向自定义帖子类型添加字段。我如何在元数据中拥有编辑选项,就像它们在编辑器框中一样? add_action(\'add_meta_boxes\', \'add_property\'); function add_property(){ add_meta_box(\"description-meta\", \"Property Description\", \"desc_options\", \"property\", \"normal\"); } &#x