Changeset 18907 for trunk/wp-includes/deprecated.php
- Timestamp:
- 10/06/2011 09:09:37 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r18827 r18907 150 150 $string = '<a href="'.get_permalink($post->ID).'">'.$previous; 151 151 if ( 'yes' == $title ) 152 $string .= apply_filters('the_title', $post->post_title, $post );152 $string .= apply_filters('the_title', $post->post_title, $post->ID); 153 153 $string .= '</a>'; 154 154 $format = str_replace('%', $string, $format); … … 186 186 $string = '<a href="'.get_permalink($post->ID).'">'.$next; 187 187 if ( 'yes' == $title ) 188 $string .= apply_filters('the_title', $post->post_title, $ nextpost);188 $string .= apply_filters('the_title', $post->post_title, $post->ID); 189 189 $string .= '</a>'; 190 190 $format = str_replace('%', $string, $format);
Note: See TracChangeset
for help on using the changeset viewer.