head
Delete Filter excerpt_allowed_blocks
Core supports core/group, core/columns,core/column
add_filter( 'excerpt_allowed_blocks', 'emulsion_excerpt_allowed_blocks' );
function emulsion_excerpt_allowed_blocks( $allowed_blocks ) {
if ( ! in_array( 'core/group', $allowed_blocks, true ) ) {
$allowed_blocks[] = 'core/group';
}
return $allowed_blocks;
}
グループがexcerptに含まれているか確認してください。WordPress 5.8~
should load separate bcore block assets
The gutenberg plugin implemented an inline style that takes style dependencies into account, so I changed the customizer default setting to enabled.
デフォルトで、preload を使っているので、スタイルはいつも同じ方がよさそう
Changed the heading to make it a little easier to write
Theme Operation Mode Setting
remove Experimental Mode
fixed author bio (editorは、崩れたままです)