wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



get_comment_author_rss › WordPress Function

Desde2.0.0
Obsoleton/a
get_comment_author_rss ( Sem parâmetros )
Retorna:
  • (string) Comment Author.
Definido em:
Codex:

Retrieves the current comment author for use in the feeds.



Fonte

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