WordPress函数文档comment_text_rss()
显示当前评论内容以便在feed中使用 描述 译文 显示当前评论内容以便在feed中使用。 原文 Display…
显示当前评论内容以便在feed中使用
描述
译文
显示当前评论内容以便在feed中使用。
原文
Display the current comment content for use in the feeds.
用法
<?php comment_text_rss() ?>
参数
None.
返回值
(void)
This function does not return a value.
注意
- 使用到: apply_filters() 调用 ‘comment_text_rss‘ 过滤器 on comment content.
- 使用到: get_comment_text()
历史
添加于 版本: 1.0.0
源文件
comment_text_rss() 函数的代码位于 wp-includes/feed.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Display the current comment content for use in the feeds.
*
* @since 1.0.0
*/
function comment_text_rss() {
$comment_text = get_comment_text();
/**
* Filter the current comment content for use in a feed.
*
* @since 1.5.0
*
* @param string $comment_text The content of the current comment.
*/
$comment_text = apply_filters( ‘comment_text_rss’, $comment_text );
echo $comment_text;
}
|
相关
Comments Function(函数)s
- Function(函数): cancel_comment_reply_link()
- Function(函数): comment_author()
- Function(函数): comment_author_email()
- Function(函数): comment_author_email_link()
- Function(函数): comment_author_IP()
- Function(函数): comment_author_link()
- Function(函数): comment_author_rss()
- Function(函数): comment_author_url()
- Function(函数): comment_author_url_link()
- Function(函数): comment_class()
- Function(函数): comment_date()
- Function(函数): comment_excerpt()
- Function(函数): comment_form_title()
- Function(函数): comment_form(),
- Function(函数): comment_ID()
- Function(函数): comment_id_fields()
- Function(函数): comment_reply_link()
- Function(函数): comment_text()
- Function(函数): comment_text_rss()
- Function(函数): comment_time()
- Function(函数): comment_type()
- Function(函数): comments_link
- Function(函数): comments_number()
- Function(函数): comments_open(),
- Function(函数): comments_popup_link()
- Function(函数): comments_popup_script()
- Function(函数): comments_rss_link()
- Function(函数): get_avatar()
- Function(函数): next_comments_link()
- Function(函数): paginate_comments_links()
- Function(函数): permalink_comments_rss()
- Function(函数): previous_comments_link()
- Function(函数): wp_list_comments()
- 原文:http://codex.wordpress.org/Function_Reference/comment_text_rss
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!