wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_sort_nav_menu_items › WordPress Function

Od3.0.0
Przestarzały4.7.0
_sort_nav_menu_items ( $a, $b )
Dostęp:
  • private
Parametry: (2)
  • (object) $a The first object to compare
    Wymagane: Tak
  • (object) $b The second object to compare
    Wymagane: Tak
Powrót:
  • (int) -1, 0, or 1 if $a is considered to be respectively less than, equal to, or greater than $b.
Zdefiniowane na:
Codex:

Sort menu items by the desired key.



Źródło

function _sort_nav_menu_items( $a, $b ) {
	global $_menu_item_sort_prop;

	_deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' );

	if ( empty( $_menu_item_sort_prop ) )
		return 0;

	if ( ! isset( $a->$_menu_item_sort_prop ) || ! isset( $b->$_menu_item_sort_prop ) )
		return 0;

	$_a = (int) $a->$_menu_item_sort_prop;
	$_b = (int) $b->$_menu_item_sort_prop;

	if ( $a->$_menu_item_sort_prop == $b->$_menu_item_sort_prop )
		return 0;
	elseif ( $_a == $a->$_menu_item_sort_prop && $_b == $b->$_menu_item_sort_prop )
		return $_a < $_b ? -1 : 1;
	else
		return strcmp( $a->$_menu_item_sort_prop, $b->$_menu_item_sort_prop );
}