函数原型
get_comment_author_rss(): string
函数描述
Retrieves the current comment author for use in the feeds.
是否弃用
未弃用
函数参数
无
函数返回值
string Comment Author.
函数位置
File: wp-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() );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |

