您需要为块使用自定义帖子类型。它所做的是,您可以使用其中的预定义块注册自己的帖子模板。我相信这就是你要找的。这是一个例子-
function myplugin_register_book_post_type() {
$args = array(
\'public\' => true,
\'label\' => \'Books\',
\'show_in_rest\' => true,
\'template\' => array(
array( \'core/image\', array(
\'align\' => \'left\',
) ),
array( \'core/heading\', array(
\'placeholder\' => \'Add Author...\',
) ),
array( \'core/paragraph\', array(
\'placeholder\' => \'Add Description...\',
) ),
),
);
register_post_type( \'book\', $args );
}
add_action( \'init\', \'myplugin_register_book_post_type\' );
此函数注册一个CPT,并通过模板选项指定其中的块。您可以锁定、松散锁定或允许插入其他块。