Warning: This function has been deprecated. Use post_comments_feed_link() instead.

comments_rss_link ( string $link_text = 'Comments RSS' )

Print RSS comment feed link.

Source file: wp-includes/deprecated.php

View source


Parameters

$link_text

(string) (Optional)

Default value: 'Comments RSS'


Used by


Source

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


Changelog


User Contributed Notes

You must log in before being able to contribute a note.