是的,您可以在创建自定义帖子类型时使用register_post_type( $post_type, $args )
功能。不要在supports参数中使用“editor”。
register_post_type(\'posttype name\',$args);
$args = array(
\'labels\' => $labels,
\'public\' => true,
\'publicly_queryable\' => true,
\'show_ui\' => true,
\'show_in_menu\' => true,
\'query_var\' => true,
\'rewrite\' => true,
\'capability_type\' => \'post\',
\'has_archive\' => true,
\'hierarchical\' => false,
// on the supports param here you see no \'editor\'
\'supports\' => array(\'title\',\'author\',\'thumbnail\',\'excerpt\',\'comments\')
);