From cf58af516705791f30a5dd0bba63b38425f68ba2 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Sun, 9 Jul 2023 14:31:24 +0000 Subject: [PATCH] Twenty Twenty-One: Replace the experimental link color theme support. This replaces `add_theme_support( 'experimental-link-color' )` with `add_theme_support( 'link-color' )`, to provide the feature to Twenty Twenty-One users, but also to avoid throwing a "doing it wrong" message when Gutenberg version 16.2 is active. Follow-up to [58597]. Props poena. Fixes #58702. Built from https://develop.svn.wordpress.org/trunk@56170 git-svn-id: http://core.svn.wordpress.org/trunk@55682 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwentyone/functions.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentytwentyone/functions.php b/wp-content/themes/twentytwentyone/functions.php index d406776042..eb80b67daa 100644 --- a/wp-content/themes/twentytwentyone/functions.php +++ b/wp-content/themes/twentytwentyone/functions.php @@ -322,8 +322,8 @@ if ( ! function_exists( 'twenty_twenty_one_setup' ) ) { // Add support for custom line height controls. add_theme_support( 'custom-line-height' ); - // Add support for experimental link color control. - add_theme_support( 'experimental-link-color' ); + // Add support for link color control. + add_theme_support( 'link-color' ); // Add support for experimental cover block spacing. add_theme_support( 'custom-spacing' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 4f848ba3fe..506999bdb9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-beta3-56169'; +$wp_version = '6.3-beta3-56170'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.