Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_page_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
1418       * Filters the arguments used to generate a page-based menu.
1419       *
1420       * @since 2.7.0
1421       *
1422       * @see wp_page_menu()
1423       *
1424       * @param array $args An array of page menu arguments. See wp_page_menu()
1425       *                    for information on accepted arguments.
1426       */
1427      $args = apply_filters( 'wp_page_menu_args', $args );
1428
1429      $menu = '';
1430
1431      $list_args = $args;
1432
1433      // Show Home in the menu.
1434      if ( ! empty( $args['show_home'] ) ) {
1435           if ( true === $args['show_home'] || '1' === $args['show_home'] || 1 === $args['show_home'] ) {
1436                $text = __( 'Home' );