WordPress将古腾堡作为主编写器
WordPress文章的编辑一般是用的 TinyMCE编辑器 ,那在我们使用古腾堡编辑器后就需要将它作为主题网站的首选编辑器,保证创建文章类型时用的是与我们当下使用的古腾堡编辑器统一,那么我们如何让;WordPress将古腾堡作为主编写器得以支持自定义文章类型编辑呢:
代码如下:
$args = array(
'labels' => $labels,
'description' => '产品列表',
'public' => true,
'menu_position' => 5,
'supports' => array('title','editor','thumbnail'), //supports中需要有editor
'show_in_rest' => true,//增加的参数
'has_archive' => true
);
register_post_type( 'product_type', $args );
WordPress官网对参数的说明:
‘show_in_rest’
(bool) Whether to include the post type in the REST API. Set this to true for the post type to be available in the block editor.
0条评论