comments_rss_link()
Deprecated from version 2.5.0. It is no longer supported and can be removed in future releases. Use post_comments_feed_link() instead.
Print RSS comment feed link.
No Hooks.
Return
null
. Nothing.
Usage
comments_rss_link( $link_text );
- $link_text(string)
- -
Default: 'Comments RSS'
Notes
Changelog
Since 1.0.1 | Introduced. | |
Deprecated Since 2.5.0 | Use post_comments_feed_link() |
Code of comments_rss_link() comments rss link WP 6.0
function comments_rss_link($link_text = 'Comments RSS') { _deprecated_function( __FUNCTION__, '2.5.0', 'post_comments_feed_link()' ); post_comments_feed_link($link_text); }