Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: nav_menu_item_args

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
128           /**
129            * Filters the arguments for a single nav menu item.
130            *
131            * @since 4.4.0
132            *
133            * @param stdClass $args  An object of wp_nav_menu() arguments.
134            * @param WP_Post  $item  Menu item data object.
135            * @param int      $depth Depth of menu item. Used for padding.
136            */
137           $args = apply_filters( 'nav_menu_item_args', $args, $item, $depth );
138
139           /**
140            * Filters the CSS class(es) applied to a menu item's list item element.
141            *
142            * @since 3.0.0
143            * @since 4.1.0 The `$depth` parameter was added.
144            *
145            * @param array    $classes The CSS classes that are applied to the menu item's `<li>` element.
146            * @param WP_Post  $item    The current menu item.