mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-11 22:29:48 +01:00
Themes: Twenty Seventeen is now the default theme.
It's party time! Fixes #38372. Built from https://develop.svn.wordpress.org/trunk@38839 git-svn-id: http://core.svn.wordpress.org/trunk@38782 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2ac1c4cc92
commit
0e0af249be
@ -48,15 +48,16 @@ final class WP_Theme implements ArrayAccess {
|
|||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
private static $default_themes = array(
|
private static $default_themes = array(
|
||||||
'classic' => 'WordPress Classic',
|
'classic' => 'WordPress Classic',
|
||||||
'default' => 'WordPress Default',
|
'default' => 'WordPress Default',
|
||||||
'twentyten' => 'Twenty Ten',
|
'twentyten' => 'Twenty Ten',
|
||||||
'twentyeleven' => 'Twenty Eleven',
|
'twentyeleven' => 'Twenty Eleven',
|
||||||
'twentytwelve' => 'Twenty Twelve',
|
'twentytwelve' => 'Twenty Twelve',
|
||||||
'twentythirteen' => 'Twenty Thirteen',
|
'twentythirteen' => 'Twenty Thirteen',
|
||||||
'twentyfourteen' => 'Twenty Fourteen',
|
'twentyfourteen' => 'Twenty Fourteen',
|
||||||
'twentyfifteen' => 'Twenty Fifteen',
|
'twentyfifteen' => 'Twenty Fifteen',
|
||||||
'twentysixteen' => 'Twenty Sixteen',
|
'twentysixteen' => 'Twenty Sixteen',
|
||||||
|
'twentyseventeen' => 'Twenty Seventeen',
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -357,6 +357,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', 'twentysixteen' );
|
define( 'WP_DEFAULT_THEME', 'twentyseventeen' );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.7-alpha-38838';
|
$wp_version = '4.7-alpha-38839';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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