目前还没有,但您可以使用块编辑器转到页面,打开浏览器开发工具,转到控制台,然后运行以下操作:
// grab all block types
const types = wp.blocks.getBlockTypes();
// filter to just the core blocks
const core_blocks = types.filter(
type => type.name.startsWith( \'core/\' )
);
// grab just the names
const block_names = core_blocks.map( type => type.name );
// display in the console
console.log( block_names );