bp_activity_recurse_comments( object $comment )

Loops through a level of activity comments and loads the template for each.

Description

Note: The recursion itself used to happen entirely in this function. Now it is split between here and the comment.php template.

Parameters

$comment

(Required) The activity object currently being recursed.

Return

(bool|string)

Source

File: bp-activity/bp-activity-template.php

1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
function bp_activity_recurse_comments( $comment ) {
    global $activities_template;
 
    if ( empty( $comment ) ) {
        return false;
    }
 
    if ( empty( $comment->children ) ) {
        return false;
    }
 
    /**
     * Filters the opening tag for the template that lists activity comments.
     *
     * @since BuddyPress 1.6.0
     *
     * @param string $value Opening tag for the HTML markup to use.
     */
    echo apply_filters( 'bp_activity_recurse_comments_start_ul', '<ul>' );
    foreach ( (array) $comment->children as $comment_child ) {
 
        // Put the comment into the global so it's available to filters.
        $activities_template->activity->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', '</ul>' );
}

Changelog

Changelog
Version Description
BuddyPress 1.2.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.