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
This commit is contained in:
audrasjb 2023-07-09 14:31:24 +00:00
parent b868da5619
commit cf58af5167
2 changed files with 3 additions and 3 deletions

View File

@ -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' );

View File

@ -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.