get_comment_author_rss() WordPress Function
The get_comment_author_rss() function is used to display the author of a comment for use in an RSS feed.
get_comment_author_rss() #
Retrieve the current comment author for use in the feeds.
Return
(string) Comment Author
Source
File: wp-includes/feed.php
function get_comment_author_rss() { /** * Filters the current comment author for use in a feed. * * @since 1.5.0 * * @see get_comment_author() * * @param string $comment_author The current comment author. */ return apply_filters( 'comment_author_rss', get_comment_author() ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |