comments_rss_link() WP 1.0.1
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)
- -
Notes
- See: post_comments_feed_link()
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 5.7.1
function comments_rss_link($link_text = 'Comments RSS') {
_deprecated_function( __FUNCTION__, '2.5.0', 'post_comments_feed_link()' );
post_comments_feed_link($link_text);
}