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