diff --git a/wp-includes/global-styles-and-settings.php b/wp-includes/global-styles-and-settings.php index 6ff5673318..1258f1f4e3 100644 --- a/wp-includes/global-styles-and-settings.php +++ b/wp-includes/global-styles-and-settings.php @@ -539,7 +539,7 @@ function wp_get_block_css_selector( $block_type, $target = 'root', $fallback = f // Prefer the selectors API if available. if ( $has_selectors ) { // Look for selector under `feature.root`. - $path = array_merge( $target, array( 'root' ) ); + $path = array( current( $target ), 'root' ); $feature_selector = _wp_array_get( $block_type->selectors, $path, null ); if ( $feature_selector ) { @@ -553,7 +553,7 @@ function wp_get_block_css_selector( $block_type, $target = 'root', $fallback = f } // Try getting old experimental supports selector value. - $path = array_merge( $target, array( '__experimentalSelector' ) ); + $path = array( current( $target ), '__experimentalSelector' ); $feature_selector = _wp_array_get( $block_type->supports, $path, null ); // Nothing to work with, provide fallback or null. diff --git a/wp-includes/version.php b/wp-includes/version.php index c04223e818..ee657bc123 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56456'; +$wp_version = '6.4-alpha-56457'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.