comment_author_rss()
apply_filters( ‘comment_author_rss’, string $comment_author )
过滤器::过滤当前的注释作者,以便在提要中使用。
Filter Hook: Filters the current comment author for use in a feed.
说明(Description)
另见函数 get_comment_author()
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$comment_author | (string) | 当前评论作者。 |
源码(Source)
/** * Display the current comment author in the feed. * * @since 1.0.0 */ function comment_author_rss() { echo get_comment_author_rss(); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
1.5.0 | wp-includes/feed.php:333 | 1 | 0 |
comment_author_rss() 为WP2原创文章,链接:https://www.wp2.cn/functions/comment_author_rss-2/