Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_nav_menu_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
62      /**
63       * Filters the arguments used to display a navigation menu.
64       *
65       * @since 3.0.0
66       *
67       * @see wp_nav_menu()
68       *
69       * @param array $args Array of wp_nav_menu() arguments.
70       */
71      $args = apply_filters( 'wp_nav_menu_args', $args );
72      $args = (object) $args;
73
74      /**
75       * Filters whether to short-circuit the wp_nav_menu() output.
76       *
77       * Returning a non-null value to the filter will short-circuit
78       * wp_nav_menu(), echoing that value if $args->echo is true,
79       * returning that value otherwise.
80       *