Warning: This function has been deprecated. Use wp_list_sort() instead.
Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
_usort_terms_by_name() WordPress Function
The usort_terms_by_name() function sorts an array of terms by name.
_usort_terms_by_name( object $a, object $b ) #
Sort categories by name.
Description
Used by usort() as a callback, should not be used directly. Can actually be used to sort any term object.
Parameters
- $a
(object)(Required)
- $b
(object)(Required)
Return
(int)
Source
File: wp-includes/deprecated.php
function _usort_terms_by_name( $a, $b ) { _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' ); return strcmp( $a->name, $b->name ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.7.0 | Use wp_list_sort() |
2.3.0 | Introduced. |