wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_comment_author_rss › WordPress Function

Seit2.0.0
Veraltetn/v
get_comment_author_rss ( Keine Parameter )
Gibt zurück:
  • (string) Comment Author.
Definiert in:
Codex:

Retrieves the current comment author for use in the feeds.



Quellcode

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