bp_activity_recurse_comments (对象美元的评论)
循环遍历一个级别的活动注释,并为每个注释加载模板。
描述
注意:递归本身过去完全在这个函数中发生。现在它被分为这里和comment.php模板。
参数
- 美元的评论
-
(对象)(必需)当前被递归的活动对象。
返回
(bool |字符串)
源
文件:bp-activity / bp-activity-template.php
函数bp_activity_recurse_comments($comment) {global $ actities_template;If (empty($comment)){返回false;} if (empty($comment->children)){返回false;} /** *过滤列出活动注释的模板的开始标记。* * @since BuddyPress 1.6.0 * * @param string $value HTML标记使用的开始标记。*/ echo apply_filters('bp_activity_recurse_comments_start_ul', '
- ');foreach ((array) $comment->children as $comment_child){//将注释放入全局变量中,以便过滤器可用。activities_template - >活动——> current_comment = $ comment_child;$template = bp_locate_template('activity/comment.php', false, false);Load_template ($template, false); unset( $activities_template->activity->current_comment ); } /** * Filters the closing tag for the template that list activity comments. * * @since BuddyPress 1.6.0 * * @param string $value Closing tag for the HTML markup to use. */ echo apply_filters( 'bp_activity_recurse_comments_end_ul', '
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.2.0 | 介绍了。 |