Make WordPress Core

Changeset 56727


Ignore:
Timestamp:
09/26/2023 05:31:28 PM (13 months ago)
Author:
karmatosed
Message:

Bundled Themes: Twenty Twenty-Four is now the default theme.

Follow up to [56716].
Props desrosj.

See #59447.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/update-core.php

    r56559 r56727  
    998998    'themes/twentytwentytwo/'   => '5.9',
    999999    'themes/twentytwentythree/' => '6.1',
     1000    'themes/twentytwentyfour/'  => '6.4',
    10001001);
    10011002
  • trunk/src/wp-includes/class-wp-theme.php

    r56621 r56727  
    6060     * @since 5.9.0 Added the Twenty Twenty-Two theme.
    6161     * @since 6.1.0 Added the Twenty Twenty-Three theme.
     62     * @since 6.4.0 Added the Twenty Twenty-Four theme.
    6263     * @var string[]
    6364     */
     
    7879        'twentytwentytwo'   => 'Twenty Twenty-Two',
    7980        'twentytwentythree' => 'Twenty Twenty-Three',
     81        'twentytwentyfour'  => 'Twenty Twenty-Four',
    8082    );
    8183
  • trunk/src/wp-includes/default-constants.php

    r56635 r56727  
    432432     */
    433433    if ( ! defined( 'WP_DEFAULT_THEME' ) ) {
    434         define( 'WP_DEFAULT_THEME', 'twentytwentythree' );
    435     }
    436 }
     434        define( 'WP_DEFAULT_THEME', 'twentytwentyfour' );
     435    }
     436}
  • trunk/tests/phpunit/tests/theme.php

    r56635 r56727  
    2323        'twentytwentytwo',
    2424        'twentytwentythree',
     25        'twentytwentyfour',
    2526    );
    2627
Note: See TracChangeset for help on using the changeset viewer.