comments_rss(): string

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

Return link to the post RSS feed.

Description

See also

Return

string

Source

function comments_rss() {
	_deprecated_function( __FUNCTION__, '2.2.0', 'get_post_comments_feed_link()' );
	return esc_url( get_post_comments_feed_link() );
}

Changelog

VersionDescription
2.2.0Use get_post_comments_feed_link()
1.5.0Introduced.

User Contributed Notes

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