Uses
Uses | Description |
---|---|
wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
wp-includes/link-template.php: post_comments_feed_link() | Displays the comment feed link for a post. |
This function has been deprecated. Use post_comments_feed_link() instead.
Print RSS comment feed link.
(string) (Optional)
Default value: 'Comments RSS'
File: wp-includes/deprecated.php
function comments_rss_link($link_text = 'Comments RSS') { _deprecated_function( __FUNCTION__, '2.5.0', 'post_comments_feed_link()' ); post_comments_feed_link($link_text); }
Version | Description |
---|---|
2.5.0 | Use post_comments_feed_link() |
1.0.1 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/comments_rss_link