Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_nav_menu_objects

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
180
181      /**
182       * Filters the sorted list of menu item objects before generating the menu's HTML.
183       *
184       * @since 3.1.0
185       *
186       * @param array    $sorted_menu_items The menu items, sorted by each menu item's menu order.
187       * @param stdClass $args              An object containing wp_nav_menu() arguments.
188       */
189      $sorted_menu_items = apply_filters( 'wp_nav_menu_objects', $sorted_menu_items, $args );
190
191      $items .= walk_nav_menu_tree( $sorted_menu_items, $args->depth, $args );
192      unset($sorted_menu_items);
193
194      // Attributes
195      if ( ! empty( $args->menu_id ) ) {
196           $wrap_id = $args->menu_id;
197      } else {
198           $wrap_id = 'menu-' . $menu->slug;