fix links generated by get_category_rss_link(). props gwagenknecht. fixes #4550 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@6100 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
23eba5ca0a
commit
74cddbcf72
|
@ -115,7 +115,7 @@ function get_author_rss_link($echo = false, $author_id, $author_nicename) {
|
||||||
$link = get_option('home') . '?feed=rss2&author=' . $author_id;
|
$link = get_option('home') . '?feed=rss2&author=' . $author_id;
|
||||||
} else {
|
} else {
|
||||||
$link = get_author_posts_url($author_id, $author_nicename);
|
$link = get_author_posts_url($author_id, $author_nicename);
|
||||||
$link = $link . user_trailingslashit('feed', 'feed');
|
$link = trailingslashit($link) . user_trailingslashit('feed', 'feed');
|
||||||
}
|
}
|
||||||
|
|
||||||
$link = apply_filters('author_feed_link', $link);
|
$link = apply_filters('author_feed_link', $link);
|
||||||
|
@ -133,7 +133,7 @@ function get_category_rss_link($echo = false, $cat_ID, $category_nicename) {
|
||||||
$link = get_option('home') . '?feed=rss2&cat=' . $cat_ID;
|
$link = get_option('home') . '?feed=rss2&cat=' . $cat_ID;
|
||||||
} else {
|
} else {
|
||||||
$link = get_category_link($cat_ID);
|
$link = get_category_link($cat_ID);
|
||||||
$link = $link . user_trailingslashit('feed', 'feed');
|
$link = trailingslashit($link) . user_trailingslashit('feed', 'feed');
|
||||||
}
|
}
|
||||||
|
|
||||||
$link = apply_filters('category_feed_link', $link);
|
$link = apply_filters('category_feed_link', $link);
|
||||||
|
|
Loading…
Reference in New Issue