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
1074                $results = $wpdb->get_results( $query );
1075                wp_cache_set( $key, $results, 'posts' );
1076           }
1077           if ( $results ) {
1078                foreach ( (array) $results as $result ) {
1079                     if ( $result->post_date != '0000-00-00 00:00:00' ) {
1080                          $url  = get_permalink( $result );
1081                          if ( $result->post_title ) {
1082                               /** This filter is documented in wp-includes/post-template.php */
1083                               $text = strip_tags( apply_filters( 'the_title', $result->post_title, $result->ID ) );
1084                          } else {
1085                               $text = $result->ID;
1086                          }
1087                          $output .= get_archives_link($url, $text, $format, $before, $after);
1088                     }
1089                }
1090           }
1091      }
1092      if ( $echo )
 
Line Code
1263           ."FROM $wpdb->posts "
1264           ."WHERE post_date >= '{$thisyear}-{$thismonth}-01 00:00:00' "
1265           ."AND post_date <= '{$thisyear}-{$thismonth}-{$last_day} 23:59:59' "
1266           ."AND post_type = 'post' AND post_status = 'publish'"
1267      );
1268      if ( $ak_post_titles ) {
1269           foreach ( (array) $ak_post_titles as $ak_post_title ) {
1270
1271                     /** This filter is documented in wp-includes/post-template.php */
1272                     $post_title = esc_attr( apply_filters( 'the_title', $ak_post_title->post_title, $ak_post_title->ID ) );
1273
1274                     if ( empty($ak_titles_for_day['day_'.$ak_post_title->dom]) )
1275                          $ak_titles_for_day['day_'.$ak_post_title->dom] = '';
1276                     if ( empty($ak_titles_for_day["$ak_post_title->dom"]) ) // first one
1277                          $ak_titles_for_day["$ak_post_title->dom"] = $post_title;
1278                     else
1279                          $ak_titles_for_day["$ak_post_title->dom"] .= $ak_title_separator . $post_title;
1280           }
1281      }