diff --git a/wp-includes/class-wp-theme-json.php b/wp-includes/class-wp-theme-json.php index 711f7a8511..ba2a2dfa38 100644 --- a/wp-includes/class-wp-theme-json.php +++ b/wp-includes/class-wp-theme-json.php @@ -658,7 +658,7 @@ class WP_Theme_JSON { * @since 6.0.0 * @since 6.2.0 Added `dimensions.minHeight` and `position.sticky`. * @since 6.4.0 Added `background.backgroundImage`. - * @since 6.5.0 Added `background.backgroundSize` and `dimensions.aspectRatio`. + * @since 6.5.0 Added `background.backgroundSize`, `dimensions.aspectRatio`, and `shadow.defaultPresets`. * @var array */ const APPEARANCE_TOOLS_OPT_INS = array( @@ -679,6 +679,7 @@ class WP_Theme_JSON { array( 'spacing', 'margin' ), array( 'spacing', 'padding' ), array( 'typography', 'lineHeight' ), + array( 'shadow', 'defaultPresets' ), ); /** diff --git a/wp-includes/version.php b/wp-includes/version.php index d2e6742657..e8fa21da36 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-beta2-57716'; +$wp_version = '6.5-beta2-57717'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.