让自定义文章类型支持古腾堡编辑器的WordPress教程

WordPress启用Gutenberg编辑器作为默认文章编辑器后会发现创建的自定义文章类型在添加文章的时候使用的还是TinyMCE编辑器,要让自定义文章类型支持古腾堡编辑器,还需要在register_post_type中添加show_in_rest参数,据了解是大致是因为Gutenberg编辑器必须利用REST API进行更新和更改,总之问题是解决了。今天分享一下让自定义文章类型支持古腾堡编辑器的WordPress教程。

让自定义文章类型支持古腾堡编辑器的WordPress教程 (https://www.wpzt.net/) WordPress基础教程 第1张

代码如下:

$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.

© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容