_wp_object_count_sort_cb

函数
_wp_object_count_sort_cb ( $a, $b )
Access
Private
参数
  • (object) $a The first object to compare.
    Required:
  • (object) $b The second object to compare.
    Required:
返回值
  • (bool) Whether the count value for `$a` is greater than the count value for `$b`.
定义位置
相关方法
_wp_object_name_sort_cb_wp_get_current_userwp_get_current_userwp_set_current_userwp_get_custom_css
引入
3.1.0
弃用
-

_wp_object_count_sort_cb: 这个函数是一个回调函数,用于按照对象的计数属性进行排序。

作为一个回调,根据计数来比较对象。

与 `uasort()`一起使用。

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

常见问题

FAQs
查看更多 >