mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-12 11:21:13 +01:00
Bundled Theme: Make twentynineteen the default theme.
After [43808], we can now make twentynineteen the default theme. Twentyseventeen has been a great default, but 5.0 and twentynineteen is guten. Fixes #45152. Built from https://develop.svn.wordpress.org/branches/5.0@43809 git-svn-id: http://core.svn.wordpress.org/branches/5.0@43638 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a3ae67bd8f
commit
634bb165bc
@ -814,6 +814,7 @@ $_new_bundled_files = array(
|
|||||||
'themes/twentyfifteen/' => '4.1',
|
'themes/twentyfifteen/' => '4.1',
|
||||||
'themes/twentysixteen/' => '4.4',
|
'themes/twentysixteen/' => '4.4',
|
||||||
'themes/twentyseventeen/' => '4.7',
|
'themes/twentyseventeen/' => '4.7',
|
||||||
|
'themes/twentynineteen/' => '5.0',
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -55,6 +55,7 @@ final class WP_Theme implements ArrayAccess {
|
|||||||
'twentyfifteen' => 'Twenty Fifteen',
|
'twentyfifteen' => 'Twenty Fifteen',
|
||||||
'twentysixteen' => 'Twenty Sixteen',
|
'twentysixteen' => 'Twenty Sixteen',
|
||||||
'twentyseventeen' => 'Twenty Seventeen',
|
'twentyseventeen' => 'Twenty Seventeen',
|
||||||
|
'twentynineteen' => 'Twenty Nineteen',
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -358,6 +358,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', 'twentyseventeen' );
|
define( 'WP_DEFAULT_THEME', 'twentynineteen' );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-43808';
|
$wp_version = '5.0-alpha-43809';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user