get_comment_author_rss()WP 2.0.0

Retrieves the current comment author for use in the feeds.

Hooks from the function

Return

String. Comment Author.

Usage

get_comment_author_rss();

Changelog

Since 2.0.0 Introduced.

get_comment_author_rss() code WP 6.5.2

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