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