使用h3块创建模板(块编辑器)

时间:2020-12-18 作者:maxime schoeni

我正在尝试使用包含预成型的h2h3. 当我添加core/heading 块,它会自动创建H2. 为了获得H3?

我的代码如下所示:

register_post_type(\'custom-post\', array(
  // [...]
  \'template\' => array(
    array(
      \'core/heading\',
       array(
         \'placeholder\' => \'this is a H2\'
       )
    ),
    array(
      \'core/heading\',
      array(
        \'heading\' => \'3\', // this does not work
        \'placeholder\' => \'this should be a H3\'
      )
    )
  )
));

1 个回复
SO网友:maxime schoeni

刚刚想出了解决方案:使用\'level\' => 3 作为参数。

register_post_type(\'custom-post\', array(
  // [...]
  \'template\' => array(
    array(
      \'core/heading\',
      array(
        \'level\' => 3
        \'placeholder\' => \'this is a H3\'
      )
    )
  )
));

相关推荐