wpseek.com
A WordPress-centric search engine for devs and theme authors



comments_rss_link › WordPress Function

Since1.0.1
Deprecated2.5.0
comments_rss_link ( $link_text = 'Comments RSS' )
Parameters:
  • (string) $link_text
    Required: No
    Default: 'Comments RSS'
See:
Defined at:
Codex:

Print RSS comment feed link.



Source

function comments_rss_link($link_text = 'Comments RSS') {
	_deprecated_function( __FUNCTION__, '2.5.0', 'post_comments_feed_link()' );
	post_comments_feed_link($link_text);
}