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

comments_rss(): string

Return link to the post RSS feed.


Description

Top ↑

See also


Top ↑

Return

string


Top ↑

Source

File: wp-includes/deprecated.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
2.2.0 Use get_post_comments_feed_link()
1.5.0 Introduced.

Top ↑

User Contributed Notes

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