在后端隐藏默认帖子正文字段 时间:2014-10-09 作者:user49869 是否有一种简单的非css黑客方法可以隐藏仪表板中的默认post body字段?我只想有标题字段和一些高级自定义字段,但删除默认的帖子正文字段。 1 个回复 SO网友:William Wilkerson add_action(\'init\', \'init_remove_support\',100); function init_remove_support() { $post_type = \'your post type\'; remove_post_type_support( $post_type, \'editor\'); } 将此添加到主题功能中。php和它应该处理好它。干杯:) 结束 文章导航