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

This hook occurs 2 times in this file.

Line Code
1490                $results = $wpdb->get_results( $query );
1491                wp_cache_set( $key, $results, 'posts' );
1492           }
1493           if ( $results ) {
1494                foreach ( (array) $results as $result ) {
1495                     if ( $result->post_date != '0000-00-00 00:00:00' ) {
1496                          $url = get_permalink( $result );
1497                          if ( $result->post_title ) {
1498                               /** This filter is documented in wp-includes/post-template.php */
1499                               $text = strip_tags( apply_filters( 'the_title', $result->post_title, $result->ID ) );
1500                          } else {
1501                               $text = $result->ID;
1502                          }
1503                          $output .= get_archives_link( $url, $text, $r['format'], $r['before'], $r['after'] );
1504                     }
1505                }
1506           }
1507      }
1508      if ( $r['echo'] ) {
 
Line Code
1680           ."FROM $wpdb->posts "
1681           ."WHERE post_date >= '{$thisyear}-{$thismonth}-01 00:00:00' "
1682           ."AND post_date <= '{$thisyear}-{$thismonth}-{$last_day} 23:59:59' "
1683           ."AND post_type = 'post' AND post_status = 'publish'"
1684      );
1685      if ( $ak_post_titles ) {
1686           foreach ( (array) $ak_post_titles as $ak_post_title ) {
1687
1688                     /** This filter is documented in wp-includes/post-template.php */
1689                     $post_title = esc_attr( apply_filters( 'the_title', $ak_post_title->post_title, $ak_post_title->ID ) );
1690
1691                     if ( empty($ak_titles_for_day['day_'.$ak_post_title->dom]) )
1692                          $ak_titles_for_day['day_'.$ak_post_title->dom] = '';
1693                     if ( empty($ak_titles_for_day["$ak_post_title->dom"]) ) // first one
1694                          $ak_titles_for_day["$ak_post_title->dom"] = $post_title;
1695                     else
1696                          $ak_titles_for_day["$ak_post_title->dom"] .= $ak_title_separator . $post_title;
1697           }
1698      }