comment_author_rss() WordPress Function
The comment_author_rss() function is used to display the author of a comment in the RSS feed. This is useful if you want to display the author's name in the RSS feed, instead of the website's name.
comment_author_rss() #
Display the current comment author in the feed.
Source
File: wp-includes/feed.php
function comment_author_rss() { echo get_comment_author_rss(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |