From 26099a407d60ff62962fa882ad7ee795a492c05e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 9 Jan 2024 11:41:18 +0000 Subject: [PATCH] Docs: Add a mention of `appearance-tools` as a possible value for `add_theme_support()`. Follow-up to [57255]. See #60118. Built from https://develop.svn.wordpress.org/trunk@57256 git-svn-id: http://core.svn.wordpress.org/trunk@56762 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.php | 3 +++ wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 1638128b4c..040275e0f8 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -2617,12 +2617,15 @@ function get_theme_starter_content() { * @since 5.6.0 The `post-formats` feature warns if no array is passed as the second parameter. * @since 5.8.0 The `widgets-block-editor` feature enables the Widgets block editor. * @since 6.0.0 The `html5` feature warns if no array is passed as the second parameter. + * @since 6.5.0 The `appearance-tools` feature enables a few design tools for blocks, + * see `WP_Theme_JSON::APPEARANCE_TOOLS_OPT_INS` for a complete list. * * @global array $_wp_theme_features * * @param string $feature The feature being added. Likely core values include: * - 'admin-bar' * - 'align-wide' + * - 'appearance-tools' * - 'automatic-feed-links' * - 'core-block-patterns' * - 'custom-background' diff --git a/wp-includes/version.php b/wp-includes/version.php index 9c712beda9..784b776dc8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57255'; +$wp_version = '6.5-alpha-57256'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.