Warning: This function has been deprecated. Use get_post_comments_feed_link() instead.
comments_rss()
Return link to the post RSS feed.
Description Description
See also See also
Return Return
(string)
Source Source
File: wp-includes/deprecated.php
1174 1175 1176 1177 | function comments_rss() { _deprecated_function( __FUNCTION__ , '2.2.0' , 'get_post_comments_feed_link()' ); return esc_url( get_post_comments_feed_link() ); } |
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.2.0 | Use get_post_comments_feed_link() |
1.5.0 | Introduced. |