comments_rss()
Deprecated from version 2.2.0. It is no longer supported and can be removed in future releases. Use get_post_comments_feed_link() instead.
Return link to the post RSS feed.
No Hooks.
Return
String
.
Usage
comments_rss();
Notes
Changelog
Since 1.5.0 | Introduced. | |
Deprecated Since 2.2.0 | Use get_post_comments_feed_link() |
Code of comments_rss() comments rss WP 6.0
function comments_rss() { _deprecated_function( __FUNCTION__, '2.2.0', 'get_post_comments_feed_link()' ); return esc_url( get_post_comments_feed_link() ); }