bp_nouveau_activity_recurse_comments (对象美元的评论)
循环一层活动注释,并为每一层加载模板。
描述
注:这是改编自bp_activity_recurse_comments ()BuddyPress核心功能
参数
- 美元的评论
-
(对象)(必需)当前正在递归的活动对象。
源
文件:bp-templates / bp-nouveau包括/活动/ template-tags.php
函数bp_nouveau_activity_recurse_comments($comment) {global $activities_template;If (empty($comment->children)) {return;} /** *过滤列出活动注释的模板的开始标签。* * @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;/** *在活动注释显示之前触发。* * @since BuddyPress 1.5.0 */ do_action('bp_before_activity_comment');bp_get_template_part(活动/评论); /** * Fires after the display of an activity comment. * * @since BuddyPress 1.5.0 */ do_action( 'bp_after_activity_comment' ); 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 3.0.0 | 介绍了。 |