Changeset 25868 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 10/22/2013 05:21:32 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r25710 r25868 1079 1079 if ( $result->post_date != '0000-00-00 00:00:00' ) { 1080 1080 $url = get_permalink( $result ); 1081 if ( $result->post_title ) 1081 if ( $result->post_title ) { 1082 /** This filter is documented in wp-includes/post-template.php */ 1082 1083 $text = strip_tags( apply_filters( 'the_title', $result->post_title, $result->ID ) ); 1083 else1084 } else { 1084 1085 $text = $result->ID; 1086 } 1085 1087 $output .= get_archives_link($url, $text, $format, $before, $after); 1086 1088 } … … 1267 1269 foreach ( (array) $ak_post_titles as $ak_post_title ) { 1268 1270 1271 /** This filter is documented in wp-includes/post-template.php */ 1269 1272 $post_title = esc_attr( apply_filters( 'the_title', $ak_post_title->post_title, $ak_post_title->ID ) ); 1270 1273
Note: See TracChangeset
for help on using the changeset viewer.