Make WordPress Core

Changeset 29895


Ignore:
Timestamp:
10/14/2014 07:57:13 PM (10 years ago)
Author:
nacin
Message:

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

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-theme.php

    r28673 r29895  
    4545        'twentythirteen' => 'Twenty Thirteen',
    4646        'twentyfourteen' => 'Twenty Fourteen',
     47        'twentyfifteen'  => 'Twenty Fifteen',
    4748    );
    4849
  • trunk/src/wp-includes/default-constants.php

    r29044 r29895  
    319319     */
    320320    if ( !defined('WP_DEFAULT_THEME') )
    321         define( 'WP_DEFAULT_THEME', 'twentyfourteen' );
    322 
    323 }
     321        define( 'WP_DEFAULT_THEME', 'twentyfifteen' );
     322
     323}
  • trunk/tests/phpunit/tests/theme.php

    r26858 r29895  
    99    protected $theme_slug = 'twentyeleven';
    1010    protected $theme_name = 'Twenty Eleven';
    11     protected $default_themes = array( 'twentyten', 'twentyeleven', 'twentytwelve', 'twentythirteen', 'twentyfourteen' );
     11    protected $default_themes = array(
     12        'twentyten', 'twentyeleven', 'twentytwelve', 'twentythirteen',
     13        'twentyfourteen', 'twentyfifteen',
     14    );
    1215
    1316    function setUp() {
Note: See TracChangeset for help on using the changeset viewer.