get_comment_author_rss()
get_comment_author_rss()
检索当前评论作者以在源中使用。
Retrieve the current comment author for use in the feeds.
返回(Return)
(string)注释作者
源码(Source)
/** * Retrieve the current comment author for use in the feeds. * * @since 2.0.0 * * @return string Comment Author */ function get_comment_author_rss() { /** * Filter 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() ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.0.0 | wp-includes/feed.php:323 | 1 function | 3 |
get_comment_author_rss() 为WP2原创文章,链接:https://www.wp2.cn/functions/get_comment_author_rss/