diff --git a/wp-includes/block-supports/layout.php b/wp-includes/block-supports/layout.php index fa6017d919..bd8666f044 100644 --- a/wp-includes/block-supports/layout.php +++ b/wp-includes/block-supports/layout.php @@ -41,6 +41,7 @@ function wp_register_layout_support( $block_type ) { * @param boolean $has_block_gap_support Whether the theme has support for the block gap. * @param string $gap_value The block gap value to apply. * @param boolean $should_skip_gap_serialization Whether to skip applying the user-defined value set in the editor. + * @param string $fallback_gap_value The custom fallback value for block gap. * @return string CSS style. */ function wp_get_layout_style( $selector, $layout, $has_block_gap_support = false, $gap_value = null, $should_skip_gap_serialization = false, $fallback_gap_value = '0.5em' ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 6e7bfebb6c..1667cc0608 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53420'; +$wp_version = '6.1-alpha-53421'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.