Bundled Themes: Twenty Twenty-Four is now the default theme.

Follow up to [56716].
Props desrosj.

See #59447.

Built from https://develop.svn.wordpress.org/trunk@56727


git-svn-id: http://core.svn.wordpress.org/trunk@56239 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2023-09-26 17:33:20 +00:00
parent e814c09465
commit 7df8ec6846
4 changed files with 5 additions and 2 deletions

View File

@ -997,6 +997,7 @@ $_new_bundled_files = array(
'themes/twentytwentyone/' => '5.6', 'themes/twentytwentyone/' => '5.6',
'themes/twentytwentytwo/' => '5.9', 'themes/twentytwentytwo/' => '5.9',
'themes/twentytwentythree/' => '6.1', 'themes/twentytwentythree/' => '6.1',
'themes/twentytwentyfour/' => '6.4',
); );
/** /**

View File

@ -59,6 +59,7 @@ final class WP_Theme implements ArrayAccess {
* @since 5.6.0 Added the Twenty Twenty-One theme. * @since 5.6.0 Added the Twenty Twenty-One theme.
* @since 5.9.0 Added the Twenty Twenty-Two theme. * @since 5.9.0 Added the Twenty Twenty-Two theme.
* @since 6.1.0 Added the Twenty Twenty-Three theme. * @since 6.1.0 Added the Twenty Twenty-Three theme.
* @since 6.4.0 Added the Twenty Twenty-Four theme.
* @var string[] * @var string[]
*/ */
private static $default_themes = array( private static $default_themes = array(
@ -77,6 +78,7 @@ final class WP_Theme implements ArrayAccess {
'twentytwentyone' => 'Twenty Twenty-One', 'twentytwentyone' => 'Twenty Twenty-One',
'twentytwentytwo' => 'Twenty Twenty-Two', 'twentytwentytwo' => 'Twenty Twenty-Two',
'twentytwentythree' => 'Twenty Twenty-Three', 'twentytwentythree' => 'Twenty Twenty-Three',
'twentytwentyfour' => 'Twenty Twenty-Four',
); );
/** /**

View File

@ -431,6 +431,6 @@ function wp_templating_constants() {
* @see WP_Theme::get_core_default_theme() * @see WP_Theme::get_core_default_theme()
*/ */
if ( ! defined( 'WP_DEFAULT_THEME' ) ) { if ( ! defined( 'WP_DEFAULT_THEME' ) ) {
define( 'WP_DEFAULT_THEME', 'twentytwentythree' ); define( 'WP_DEFAULT_THEME', 'twentytwentyfour' );
} }
} }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.4-alpha-56726'; $wp_version = '6.4-alpha-56727';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.