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
872  * </ul>
873  *
874  * @since 2.7.0
875  *
876  * @param array|string $args
877  */
878 function wp_page_menu( $args = array() ) {
879      $defaults = array('sort_column' => 'menu_order, post_title', 'menu_class' => 'menu', 'echo' => true, 'link_before' => '', 'link_after' => '');
880      $args = wp_parse_args( $args, $defaults );
881      $args = apply_filters( 'wp_page_menu_args', $args );
882
883      $menu = '';
884
885      $list_args = $args;
886
887      // Show Home in the menu
888      if ( ! empty($args['show_home']) ) {
889           if ( true === $args['show_home'] || '1' === $args['show_home'] || 1 === $args['show_home'] )
890                $text = __('Home');