Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: list_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
77
78           /**
79            * Filters the page title when creating an HTML drop-down list of pages.
80            *
81            * @since 3.1.0
82            *
83            * @param string  $title Page title.
84            * @param WP_Post $page  Page data object.
85            */
86           $title = apply_filters( 'list_pages', $title, $page );
87
88           $output .= $pad . esc_html( $title );
89           $output .= "</option>\n";
90      }
91 }
92