在帖子类型的声明中为“supports”指定一个空白数组应该可以去掉编辑器和标题,以及编辑帖子页面中的其他默认框。
$supports = array (\'\');
$args = array(
\'label\' => \'people\',
\'supports\' => $supports,
\'hierarchical\' => false,
\'public\' => true,
\'rewrite\' => true
);
register_post_type( \'people\', $args);
结果:
使用您想要显示的任何元素(如trackback、comments等)填充“supports”,或将其留空以将页面留空,但用于保存帖子的框除外。确保访问
here 如果您还想摆脱层次分类法元数据库。