wpseek.com
A WordPress-centric search engine for devs and theme authors



get_author_rss_link › WordPress Function

Since1.2.0
Deprecated2.5.0
get_author_rss_link ( $display = false, $author_id = 1 )
Parameters: (2)
  • (bool) $display
    Required: No
    Default: false
  • (int) $author_id
    Required: No
    Default: 1
See:
Returns:
  • (string)
Defined at:
Codex:

Print/Return link to author RSS feed.



Source

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;
}