Changeset 6082
- Timestamp:
- 09/11/2007 08:05:52 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r6068 r6082 433 433 return; 434 434 435 $title = apply_filters('the_title', $post->post_title, $post); 435 $title = $post->post_title; 436 437 if ( empty($post->post_title) ) 438 $title = __('Previous Post'); 439 440 $title = apply_filters('the_title', $title, $post); 436 441 $string = '<a href="'.get_permalink($post->ID).'">'; 437 442 $link = str_replace('%title', $title, $link); … … 449 454 return; 450 455 451 $title = apply_filters('the_title', $post->post_title, $post); 456 $title = $post->post_title; 457 458 if ( empty($post->post_title) ) 459 $title = __('Next Post'); 460 461 $title = apply_filters('the_title', $title, $post); 452 462 $string = '<a href="'.get_permalink($post->ID).'">'; 453 463 $link = str_replace('%title', $title, $link);
Note: See TracChangeset
for help on using the changeset viewer.