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() |
comments_rss() comments rss code WP 6.7.1
function comments_rss() { _deprecated_function( __FUNCTION__, '2.2.0', 'get_post_comments_feed_link()' ); return esc_url( get_post_comments_feed_link() ); }