当前位置:首页-WordPress文章-WordPress-正文

WordPress自定义文章类型支持古腾堡编辑器(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,在注册自定义分类法的代码中:

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 进行更新和更改。

本文原创,作者:萨龙龙,其版权均为萨龙网络所有。
如需转载,请注明出处:https://salongweb.com/wordpress-gutenberg-custom-post-type.html