Sort themes by name on the new themes.php page. see #25948.
Built from https://develop.svn.wordpress.org/trunk@26216 git-svn-id: http://core.svn.wordpress.org/trunk@26124 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
52ecbebba3
commit
1832d880a5
|
@ -354,7 +354,7 @@ function themes_api( $action, $args = null ) {
|
||||||
* @param array $themes Optional. Array of WP_Theme objects to prepare.
|
* @param array $themes Optional. Array of WP_Theme objects to prepare.
|
||||||
* Defaults to all allowed themes.
|
* Defaults to all allowed themes.
|
||||||
*
|
*
|
||||||
* @return array An associative array of theme data.
|
* @return array An associative array of theme data, sorted by name.
|
||||||
*/
|
*/
|
||||||
function wp_prepare_themes_for_js( $themes = null ) {
|
function wp_prepare_themes_for_js( $themes = null ) {
|
||||||
if ( null === $themes ) {
|
if ( null === $themes ) {
|
||||||
|
@ -370,6 +370,7 @@ function wp_prepare_themes_for_js( $themes = null ) {
|
||||||
$updates = $updates->response;
|
$updates = $updates->response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WP_Theme::sort_by_name( $themes );
|
||||||
foreach( $themes as $slug => $theme ) {
|
foreach( $themes as $slug => $theme ) {
|
||||||
$parent = false;
|
$parent = false;
|
||||||
if ( $theme->parent() ) {
|
if ( $theme->parent() ) {
|
||||||
|
|
Loading…
Reference in New Issue