Definition:
function get_author_rss_link($echo = false, $author_id = 1) {}
Print/Return link to author RSS feed.
Parameters
- bool $echo
- int $author_id
Source code
function get_author_rss_link($echo = false, $author_id = 1) {
_deprecated_function( __FUNCTION__, '2.5', 'get_author_feed_link()' );
$link = get_author_feed_link($author_id);
if ( $echo )
echo $link;
return $link;
}
1174

February 12, 2011 


No comments yet... Be the first to leave a reply!