Set Twenty Fifteen as the new default theme. see #29799.

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


git-svn-id: http://core.svn.wordpress.org/trunk@29650 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2014-10-14 19:58:19 +00:00
parent e2041b8fbb
commit be7825789d
2 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,7 @@ final class WP_Theme implements ArrayAccess {
'twentytwelve' => 'Twenty Twelve',
'twentythirteen' => 'Twenty Thirteen',
'twentyfourteen' => 'Twenty Fourteen',
'twentyfifteen' => 'Twenty Fifteen',
);
/**

View File

@ -318,6 +318,6 @@ function wp_templating_constants() {
* @since 3.0.0
*/
if ( !defined('WP_DEFAULT_THEME') )
define( 'WP_DEFAULT_THEME', 'twentyfourteen' );
define( 'WP_DEFAULT_THEME', 'twentyfifteen' );
}