WP_Theme::sort_by_name() WordPress Method
WP_Theme::sort_by_name() is a method for sorting themes by name. It takes an array of themes and sorts them alphabetically by name.
WP_Theme::sort_by_name( WP_Theme[] $themes ) #
Sorts themes by name.
Parameters
- $themes
(WP_Theme[])(Required)Array of theme objects to sort (passed by reference).
Source
File: wp-includes/class-wp-theme.php
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 | public static function sort_by_name( & $themes ) { if ( 0 === strpos ( get_user_locale(), 'en_' ) ) { uasort( $themes , array ( 'WP_Theme' , '_name_sort' ) ); } else { foreach ( $themes as $key => $theme ) { $theme ->translate_header( 'Name' , $theme ->headers[ 'Name' ] ); } uasort( $themes , array ( 'WP_Theme' , '_name_sort_i18n' ) ); } } |
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |