diff --git a/wp-includes/class-wp-theme-json.php b/wp-includes/class-wp-theme-json.php index 06dd33e43c..e0c97b4b00 100644 --- a/wp-includes/class-wp-theme-json.php +++ b/wp-includes/class-wp-theme-json.php @@ -1598,6 +1598,7 @@ class WP_Theme_JSON { $blocks_metadata = static::get_blocks_metadata(); $setting_nodes = static::get_setting_nodes( $this->theme_json, $blocks_metadata ); + $filters = ''; foreach ( $setting_nodes as $metadata ) { $node = _wp_array_get( $this->theme_json, $metadata['path'], array() ); if ( empty( $node['color']['duotone'] ) ) { @@ -1606,7 +1607,6 @@ class WP_Theme_JSON { $duotone_presets = $node['color']['duotone']; - $filters = ''; foreach ( $origins as $origin ) { if ( ! isset( $duotone_presets[ $origin ] ) ) { continue; diff --git a/wp-includes/version.php b/wp-includes/version.php index 606fe6f057..9965ece413 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52790'; +$wp_version = '6.0-alpha-52791'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.