wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_comment_author_rss › WordPress Function

Da2.0.0
Deprecaton/a
get_comment_author_rss ( Nessun parametro )
Ritorna:
  • (string) Comment Author.
Definito a:
Codex:

Retrieves the current comment author for use in the feeds.



Sorgenti

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