wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_comment_author_rss › WordPress Function

Since2.0.0
已弃用n/a
get_comment_author_rss ( 没有参数 )
返回:
  • (string) Comment Author.
定义在:
文档:

Retrieves the current comment author for use in the feeds.



源码

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