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



_wp_object_count_sort_cb › WordPress Function

Seit3.1.0
Veraltetn/v
_wp_object_count_sort_cb ( $a, $b )
Zugriff:
  • private
Parameter: (2)
  • (object) $a The first object to compare.
    Erforderlich: Ja
  • (object) $b The second object to compare.
    Erforderlich: Ja
Gibt zurück:
  • (int) Negative number if `$a->count` is less than `$b->count`, zero if they are equal, or greater than zero if `$a->count` is greater than `$b->count`.
Definiert in:
Codex:

Serves as a callback for comparing objects based on count.

Used with uasort().


Quellcode

function _wp_object_count_sort_cb( $a, $b ) {
	return ( $a->count - $b->count );
}