WordPress Version: 6.1
/**
* 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
*/
function get_author_rss_link($display = false, $author_id = 1)
{
_deprecated_function(__FUNCTION__, '2.5.0', 'get_author_feed_link()');
$link = get_author_feed_link($author_id);
if ($display) {
echo $link;
}
return $link;
}