wpseek.com
A WordPress-centric search engine for devs and theme authors



get_comment_author_rss › WordPress Function

Since2.0.0
Deprecatedn/a
get_comment_author_rss ( No parameters )
Returns:
  • (string) Comment Author.
Defined at:
Codex:

Retrieves the current comment author for use in the feeds.



Source

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