是的,请从自定义帖子类型中删除编辑器支持。
你可以用两种方法来做。
注册自定义帖子类型时:
$args = array(
\'public\' => true,
\'publicly_queryable\' => true,
\'show_ui\' => true,
\'show_in_menu\' => true,
\'capability_type\' => \'post\',
\'has_archive\' => true,
\'supports\' => array(\'title\',\'author\',\'thumbnail\',\'excerpt\',\'comments\')
);
register_post_type(\'book\',$args);
2。如果您的代码未定义自定义帖子类型(即其他插件/主题定义了自定义帖子类型),请使用remove\\u post\\u type支持。
示例:
add_action(\'init\', \'my_rem_editor_from_post_type\');
function my_rem_editor_from_post_type() {
remove_post_type_support( <POST TYPE>, \'editor\' );
}