This function has been deprecated. Use get_post_comments_feed_link() instead.
Warning: Array to string conversion in /var/www/public/docs.classicpress.net/public_html/wp-content/themes/cpnet-developer/inc/template-tags.php on line 789
comments_rss()
Return link to the post RSS feed.
Description
See also
Warning: Array to string conversion in /var/www/public/docs.classicpress.net/public_html/wp-content/themes/cpnet-developer/inc/template-tags.php on line 789
Return
(string)
Source
File: wp-includes/deprecated.php
function comments_rss() {
_deprecated_function( __FUNCTION__, 'WP-2.2.0', 'get_post_comments_feed_link()' );
return esc_url( get_post_comments_feed_link() );
}
Changelog
| Version | Description |
|---|---|
| 2.2.0 | Use get_post_comments_feed_link() |
| 1.5.0 | Introduced. This function has been deprecated. Use get_post_comments_feed_link() instead. |