WORDPRESS -默认块加载在新的帖子



是否有可能,当创建一个新的帖子,自定义的帖子类型或页面,被加载与所有块自动布局?

是,

如果你正在注册一个新的自定义帖子类型,使用template属性,然后创建一个嵌套数组与块的名称和另一个嵌套数组与任何块的属性,你想要填写。如果您不知道一个块的属性,通常可以在块的块中找到它们。json文件

自定义post类型的示例如下:

'template' => array(
array(
'core/paragraph',
array(
'align'   => 'center',
'content' => 'Place content you already in the block, even a link to a site like <a href="stackoverflow.com">stackoverflow</a>.',
),
),
array(
'core/buttons',
array(
'layout' => array(
'type'           => 'flex',
'justifyContent' => 'center',
),
),
array(
array(
'core/button',
array(
'text'      => 'button text',
'url'       => 'https://the-url.com/',
'className' => 'a-custom-class-name',
),
),
),
),

对于现有的post类型,创建一个回调函数,将其挂接到init中,如Gutenberg文档中所示。

相关内容

  • 没有找到相关文章

最新更新