Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_page_menu

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
1495       *
1496       * @since 2.7.0
1497       *
1498       * @see wp_page_menu()
1499       *
1500       * @param string $menu The HTML output.
1501       * @param array  $args An array of arguments. See wp_page_menu()
1502       *                     for information on accepted arguments.
1503       */
1504      $menu = apply_filters( 'wp_page_menu', $menu, $args );
1505
1506      if ( $args['echo'] ) {
1507           echo $menu;
1508      } else {
1509           return $menu;
1510      }
1511 }
1512
1513 //