_wp_object_name_sort_cb

函数
_wp_object_name_sort_cb ( $a, $b )
Access
Private
参数
  • (object) $a The first object to compare.
    Required:
  • (object) $b The second object to compare.
    Required:
返回值
  • (int) Negative number if `$a->name` is less than `$b->name`, zero if they are equal, or greater than zero if `$a->name` is greater than `$b->name`.
定义位置
相关方法
_wp_object_count_sort_cbwp_get_nav_menu_to_editwp_get_nav_menuswp_customize_support_scriptwp_robots_noindex_search
引入
3.1.0
弃用
-

_wp_object_name_sort_cb: 这个函数是一个回调函数,用于根据对象的名称属性进行排序。

作为一个回调,用于根据名称比较对象。

与`uasort()`一起使用。

function _wp_object_name_sort_cb( $a, $b ) {
	return strnatcasecmp( $a->name, $b->name );
}

常见问题

FAQs
查看更多 >