From 716a99587c04e5b37b4ceacc3ccce6c72c842464 Mon Sep 17 00:00:00 2001 From: Riad Benguella Date: Tue, 8 Jun 2021 17:35:06 +0000 Subject: [PATCH] Block Editor: Allow themes to add inline styles for all blocks when using lazy styles loading. Props aristath. Fixes #53358. git-svn-id: https://develop.svn.wordpress.org/trunk@51102 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/blocks.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/wp-includes/blocks.php b/src/wp-includes/blocks.php index f210858e55..f5541e0ae9 100644 --- a/src/wp-includes/blocks.php +++ b/src/wp-includes/blocks.php @@ -209,6 +209,22 @@ function register_block_type_from_metadata( $file_or_folder, $args = array() ) { */ $metadata = apply_filters( 'block_type_metadata', $metadata ); + /** + * Add `style` and `editor_style` for core blocks if missing. + * + * @since 5.8.0 + */ + if ( ! empty( $metadata['name'] ) && 0 === strpos( $metadata['name'], 'core/' ) ) { + $block_name = str_replace( 'core/', '', $metadata['name'] ); + + if ( ! isset( $metadata['style'] ) ) { + $metadata['style'] = "wp-block-$block_name"; + } + if ( ! isset( $metadata['editor_style'] ) ) { + $metadata['editor_style'] = "wp-block-$block_name-editor"; + } + } + $settings = array(); $property_mappings = array( 'title' => 'title',