在POST模式下移动标题“meta box” 时间:2011-03-13 作者:INT 我用自己的自定义元框创建了一个自定义帖子类型。现在,我想把标题框移到一边,或者简单地将其删除,然后将相同的内容放在自定义的元框中。我该怎么做呢?谢谢 1 个回复 最合适的回答,由SO网友:TheDeadMedic 整理而成 注册帖子类型时,请使用supports 参数显式设置要使用的核心元框。register_post_type(\'my_type\', array( \'supports\' => array( \'editor\' ) // if "title" isn\'t in this array, it won\'t appear on the edit post page // other arguments )); 结束 文章导航