Make WordPress Core


Ignore:
Timestamp:
11/15/2013 04:41:39 PM (11 years ago)
Author:
nacin
Message:

Sort themes by name on the new themes.php page. see #25948.

File:
1 edited

Legend:

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

    r26215 r26216  
    355355 *                      Defaults to all allowed themes.
    356356 *
    357  * @return array An associative array of theme data.
     357 * @return array An associative array of theme data, sorted by name.
    358358 */
    359359function wp_prepare_themes_for_js( $themes = null ) {
     
    371371    }
    372372
     373    WP_Theme::sort_by_name( $themes );
    373374    foreach( $themes as $slug => $theme ) {
    374375        $parent = false;
Note: See TracChangeset for help on using the changeset viewer.