好奇心,您如何在管理区域中管理Gutenberg块预览?

时间:2019-05-23 15:15:01

标签: php css wordpress bootstrap-4 wordpress-gutenberg

如何在管理区域中管理gutenberg块预览?

示例
如果我在bootstrap上开发了一个带有自定义CSS的代码块,那么在管理区域中是否要加载bootstrap和CSS以获取预览?

1 个答案:

答案 0 :(得分:0)

您可以为block editor handbook中所述的每个块加载自定义的CSS和javascript。但是,仅对一个块加载引导程序可能不是一个好主意。

您可以选择在style函数中提供editor_styleregister_block_type。第一个加载在前端+后面,后者仅加载在后端。

register_block_type( 'gutenberg-examples/example-02-stylesheets', array(
    'style' => 'gutenberg-examples-02',
    'editor_style' => 'gutenberg-examples-02-editor',
    'editor_script' => 'gutenberg-examples-02',
) );