Ticket #8130: deprecated_functions.2.7.diff
| File deprecated_functions.2.7.diff, 2.4 KB (added by , 17 years ago) |
|---|
-
wp-includes/post-template.php
386 386 * The formatted output of a list of pages. 387 387 * 388 388 * Displays page links for paginated posts (i.e. includes the <!--nextpage-->. 389 * Quicktag one or more times). This works in much the same way as link_pages(), 390 * the difference being that arguments are given in query string format. This 391 * tag must be within The Loop. 389 * Quicktag one or more times). This tag must be within The Loop. 392 390 * 393 391 * The defaults for overwriting are: 394 392 * 'next_or_number' - Default is 'number' (string). Indicates whether page -
wp-includes/bookmark-template.php
122 122 $output .= $between . $desc; 123 123 124 124 if ($show_rating) { 125 $output .= $between . get_linkrating($bookmark);125 $output .= $between . sanitize_bookmark_field('link_rating', $bookmark->link_rating, $bookmark->link_id, 'display'); 126 126 } 127 127 128 128 $output .= "$after\n"; -
wp-includes/author-template.php
499 499 $link .= ' '; 500 500 if (empty($feed_image)) 501 501 $link .= '('; 502 $link .= '<a href="' . get_author_ rss_link(0, $author->ID, $author->user_nicename) . '"';502 $link .= '<a href="' . get_author_feed_link($author->ID) . '"'; 503 503 504 504 if ( !empty($feed) ) { 505 505 $title = ' title="' . $feed . '"'; -
wp-includes/canonical.php
126 126 $redirect['query'] = remove_query_arg('cat', $redirect['query']); 127 127 } elseif ( is_author() && !empty($_GET['author']) ) { 128 128 $author = get_userdata(get_query_var('author')); 129 if ( false !== $author && $redirect_url = get_author_ link(false,$author->ID, $author->user_nicename) )129 if ( false !== $author && $redirect_url = get_author_posts_url($author->ID, $author->user_nicename) ) 130 130 $redirect['query'] = remove_query_arg('author', $redirect['author']); 131 131 } 132 132