get_author_rss_link( bool $display = false, int $author_id = 1 ): string

This function has been deprecated. Use get_author_feed_link() instead.

Print/Return link to author RSS feed.

Description

See also

Parameters

$displaybooloptional

Default:false

$author_idintoptional

Default:1

Return

string

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

Changelog

VersionDescription
2.5.0Use get_author_feed_link()
1.2.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.