WordPress函数文档comment_author_rss()
在feed中显示当前评论的作者 描述 译文 在feed中显示当前评论的作者 原文 Display the cu…
在feed中显示当前评论的作者
描述
译文
在feed中显示当前评论的作者
原文
Display the current comment author in the feed.
用法
<?php comment_author_rss() ?>
参数
None.
返回值
(void)
This function does not return a value.
注意
- Echos the return from get_comment_author_rss().
历史
添加于 版本: 1.0.0
源文件
comment_author_rss() 函数的代码位于 wp-includes/feed.php
.
1
2
3
4
5
6
7
8
9
10
11
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Display the current comment author in the feed.
*
* @since 1.0.0
*/
function comment_author_rss() {
echo get_comment_author_rss();
}
|
- 原文:http://codex.wordpress.org/Function_Reference/comment_author_rss
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!