Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: walker_nav_menu_start_el

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
86           $attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
87           $attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';
88
89           $item_output = $args->before;
90           $item_output .= '<a'. $attributes .'>';
91           $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
92           $item_output .= '</a>';
93           $item_output .= $args->after;
94
95           $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
96      }
97
98      /**
99       * @see Walker::end_el()
100       * @since 3.0.0
101       *
102       * @param string $output Passed by reference. Used to append additional content.
103       * @param object $item Page data object. Not used.
104       * @param int $depth Depth of page. Not Used.