wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_comment_author_rss › WordPress Function

Depuis2.0.0
Dépréciéen/a
get_comment_author_rss ( Pas de paramètres )
Retourne:
  • (string) Comment Author.
Défini(e) dans:
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() );
}