Gutenberg,WordPress 最新的编辑器,每个模块都是一个 blocks 的形式。默认的编辑文章页面是支持 Gutenberg 编辑器,自定义文章类型的编辑页面还是默认编辑器的就需要对代码进行改造下。1、自定义文章类型都是需要在添加代码来实现,官方提供了各个功能模块的设置,支持 Gutenberg 编辑器需…

Gutenberg,WordPress 最新的编辑器,每个模块都是一个 blocks 的形式。默认的编辑文章页面是支持 Gutenberg 编辑器,自定义文章类型的编辑页面还是默认编辑器的就需要对代码进行改造下。

1、自定义文章类型都是需要在添加代码来实现,官方提供了各个功能模块的设置,支持 Gutenberg 编辑器需要在代码中添加show_in_rest键,并设置为 true,代码如下:

$args = array(    'labels'              => $labels,    'hierarchical'        => false,    'supports'            => array('title','editor','custom-fields'),    ......    'show_in_rest'        => true,    'capability_type'     => 'post');

2、同样需要将添加show_in_rest键,并设置为 true,在xwenw.com/tag/%e6%b3%a8%e5%86%8c" target="_blank">注册自定义分类法的代码中:

register_taxonomy('taxonomy',array('post_type'), array(    'hierarchical'      => false,    'labels'            => $labels,    'show_ui'           => true,    'show_admin_column' => true,    'query_var'         => true,    'show_in_rest'      => true,    'rewrite'           => array( 'slug' => 'taxonomy' ),));

注:Gutenberg 必须利用 REST API 进行更新和更改。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。