Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_get_nav_menu_items

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
534      if ( ARRAY_A == $args['output'] ) {
535           $GLOBALS['_menu_item_sort_prop'] = $args['output_key'];
536           usort($items, '_sort_nav_menu_items');
537           $i = 1;
538           foreach( $items as $k => $item ) {
539                $items[$k]->$args['output_key'] = $i++;
540           }
541      }
542
543      return apply_filters( 'wp_get_nav_menu_items',  $items, $menu, $args );
544 }
545
546 /**
547  * Decorates a menu item object with the shared navigation menu item properties.
548  *
549  * Properties:
550  * - db_id:           The DB ID of this item as a nav_menu_item object, if it exists (0 if it doesn't exist).
551  * - object_id:          The DB ID of the original object this menu item represents, e.g. ID for posts and term_id for categories.
552  * - type:          The family of objects originally represented, such as "post_type" or "taxonomy."