WP_Theme::_name_sort_i18n()private staticWP 3.4.0

Callback function for usort() to naturally sort themes by translated name.

Method of the class: WP_Theme{}

No Hooks.

Return

Int. Negative if $a falls lower in the natural order than $b. Zero if they fall equally. Greater than 0 if $a falls higher in the natural order than $b. Used with usort().

Usage

$result = WP_Theme::_name_sort_i18n( $a, $b );
$a(WP_Theme) (required)
First theme.
$b(WP_Theme) (required)
Second theme.

Changelog

Since 3.4.0 Introduced.

WP_Theme::_name_sort_i18n() code WP 6.5.2

private static function _name_sort_i18n( $a, $b ) {
	return strnatcasecmp( $a->name_translated, $b->name_translated );
}