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();
}


Top ↑

Changelog

Changelog
VersionDescription
1.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.