Ticket #4209: 4209.diff
File 4209.diff, 875 bytes (added by , 16 years ago) |
---|
-
wp-includes/link-template.php
438 438 return; 439 439 440 440 $title = apply_filters('the_title', $post->post_title, $post); 441 $string = '<a href="'.get_permalink($post->ID).'" >';441 $string = '<a href="'.get_permalink($post->ID).'" rel="prev">'; 442 442 $link = str_replace('%title', $title, $link); 443 443 $link = $pre . $string . $link . '</a>'; 444 444 … … 454 454 return; 455 455 456 456 $title = apply_filters('the_title', $post->post_title, $post); 457 $string = '<a href="'.get_permalink($post->ID).'" >';457 $string = '<a href="'.get_permalink($post->ID).'" rel="next">'; 458 458 $link = str_replace('%title', $title, $link); 459 459 $link = $string . $link . '</a>'; 460 460 $format = str_replace('%link', $link, $format);