get_comment_author_rss()

最后更新于:2021-11-26 08:26:42

get_comment_author_rss()

Retrieve the current comment author for use in the feeds.

响应

(string) Comment Author

源文件

文件: gc-includes/feed.php

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