wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_usort_terms_by_id › WordPress Function

Seit2.3.0
Veraltet4.7.0
_usort_terms_by_id ( $a, $b )
Zugriff:
  • private
Parameter: (2)
  • (object) $a
    Erforderlich: Ja
  • (object) $b
    Erforderlich: Ja
Gibt zurück:
  • (int)
Definiert in:
Codex:

Sort categories by ID.

Used by usort() as a callback, should not be used directly. Can actually be used to sort any term object.


Quellcode

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;
}