mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-16 15:46:04 +01:00
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:
parent
e814c09465
commit
7df8ec6846
@ -997,6 +997,7 @@ $_new_bundled_files = array(
|
||||
'themes/twentytwentyone/' => '5.6',
|
||||
'themes/twentytwentytwo/' => '5.9',
|
||||
'themes/twentytwentythree/' => '6.1',
|
||||
'themes/twentytwentyfour/' => '6.4',
|
||||
);
|
||||
|
||||
/**
|
||||
|
@ -59,6 +59,7 @@ final class WP_Theme implements ArrayAccess {
|
||||
* @since 5.6.0 Added the Twenty Twenty-One theme.
|
||||
* @since 5.9.0 Added the Twenty Twenty-Two theme.
|
||||
* @since 6.1.0 Added the Twenty Twenty-Three theme.
|
||||
* @since 6.4.0 Added the Twenty Twenty-Four theme.
|
||||
* @var string[]
|
||||
*/
|
||||
private static $default_themes = array(
|
||||
@ -77,6 +78,7 @@ final class WP_Theme implements ArrayAccess {
|
||||
'twentytwentyone' => 'Twenty Twenty-One',
|
||||
'twentytwentytwo' => 'Twenty Twenty-Two',
|
||||
'twentytwentythree' => 'Twenty Twenty-Three',
|
||||
'twentytwentyfour' => 'Twenty Twenty-Four',
|
||||
);
|
||||
|
||||
/**
|
||||
|
@ -431,6 +431,6 @@ function wp_templating_constants() {
|
||||
* @see WP_Theme::get_core_default_theme()
|
||||
*/
|
||||
if ( ! defined( 'WP_DEFAULT_THEME' ) ) {
|
||||
define( 'WP_DEFAULT_THEME', 'twentytwentythree' );
|
||||
define( 'WP_DEFAULT_THEME', 'twentytwentyfour' );
|
||||
}
|
||||
}
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @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.
|
||||
|
Loading…
Reference in New Issue
Block a user