_usort_terms_by_ID()
Deprecated from version 4.7.0. It is no longer supported and can be removed in future releases. Use wp_list_sort() instead.
Sort categories by ID.
Used by usort() as a callback, should not be used directly. Can actually be used to sort any term object.
This is an internal function for using it by WP core itself. It's not recommended to use this function in your code.
No Hooks.
Return
Int
.
Usage
_usort_terms_by_ID( $a, $b );
- $a(object) (required)
- -
- $b(object) (required)
- -
Changelog
Since 2.3.0 | Introduced. | |
Deprecated Since 4.7.0 | Use wp_list_sort() |
Code of _usort_terms_by_ID() usort terms by ID WP 6.0
function _usort_terms_by_ID( $a, $b ) { _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' ); if ( $a->term_id > $b->term_id ) return 1; elseif ( $a->term_id < $b->term_id ) return -1; else return 0; }