function get_category_rss_link($display = false,
$cat_id = 1
) { _deprecated_function( __FUNCTION__, '2.5.0', 'get_category_feed_link()'
);
$link =
get_category_feed_link($cat_id, 'rss2'
);
if ( $display ) echo $link;
return $link;
}/**
* Print/Return link to author RSS feed.
*
* @since 1.2.0
* @deprecated 2.5.0 Use get_author_feed_link()
* @see get_author_feed_link()
*
* @param bool $display
* @param int $author_id
* @return string
*/