file not found, search result none,
templateを追加
patterns/emulsion-archive-grid.php
patterns/emulsion-archive-sidebar.php
patterns/emulsion-front-page.php
patterns/emulsion-front-page-sidebar.php
以下のテンプレートを削除
templates/search.html
templates/404.html
templates/category.html
templates/tag.html
templates/archive.html
templates/home.html
固定ページから、コメントを削除
core/html block
/**
* Remove unexpected HTML scripts with custom HTML blocks
*
* The theme uses the wp_kses_allowed_html filter to extend the allowed attribute.
* Check lib/conf.php for details.
*/
//add_filter( 'render_block_core/html', 'emulsion_sanitize_block_html' );
if ( ! function_exists( 'emulsion_sanitize_block_html' ) ) {
function emulsion_sanitize_block_html( $html ) {
return wp_kses_post( $html );
}
}
wp_kses_post フィルタを追加
style script 要素、onclick attributeは、フィルタされます。
memo
Tracking issue: Connecting block attributes and custom fields · Issue #53300 · WordPress/gutenberg
<!-- wp:paragraph { "connections": { "attributes": { "content": { "source": "meta_fields", "value": "my_custom_field" } } } } -->