Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_dropdown_pages

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
1200       * Filters the HTML output of a list of pages as a drop down.
1201       *
1202       * @since 2.1.0
1203       * @since 4.4.0 `$parsed_args` and `$pages` added as arguments.
1204       *
1205       * @param string $output      HTML output for drop down list of pages.
1206       * @param array  $parsed_args The parsed arguments array.
1207       * @param array  $pages       List of WP_Post objects returned by `get_pages()`
1208       */
1209      $html = apply_filters( 'wp_dropdown_pages', $output, $parsed_args, $pages );
1210
1211      if ( $parsed_args['echo'] ) {
1212           echo $html;
1213      }
1214      return $html;
1215 }
1216
1217 /**
1218  * Retrieve or display a list of pages (or hierarchical post type items) in list (li) format.