Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_title

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
190                }
191           }
192
193           $output .= $indent . sprintf(
194                '<li%s><a%s>%s%s%s</a>',
195                $css_classes,
196                $attributes,
197                $args['link_before'],
198                /** This filter is documented in wp-includes/post-template.php */
199                apply_filters( 'the_title', $page->post_title, $page->ID ),
200                $args['link_after']
201           );
202
203           if ( ! empty( $args['show_date'] ) ) {
204                if ( 'modified' === $args['show_date'] ) {
205                     $time = $page->post_modified;
206                } else {
207                     $time = $page->post_date;
208                }