bbp_get_public_child_count( int $parent_id, string $post_type = 'post' )

Query the DB and get a count of public children

Description

Parameters

$parent_id

(Required) Parent id

$post_type

(Optional) Post type. Defaults to 'post'

Default value: 'post'

Return

(int) The number of children

Source

File: bp-forums/common/functions.php

1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
function bbp_get_public_child_count( $parent_id = 0, $post_type = 'post' ) {
    global $wpdb;
 
    // Bail if nothing passed
    if ( empty( $parent_id ) )
        return false;
 
    // The ID of the cached query
    $cache_id    = 'bbp_parent_' . $parent_id . '_type_' . $post_type . '_child_count';
 
    // Check for cache and set if needed
    $child_count = wp_cache_get( $cache_id, 'bbpress_posts' );
    if ( false === $child_count ) {
        $post_status = array( bbp_get_public_status_id() );
 
        // Add closed status if topic post type
        if ( $post_type === bbp_get_topic_post_type() ) {
            $post_status[] = bbp_get_closed_status_id();
        }
 
        // Join post statuses together
        $post_status = "'" . implode( "', '", $post_status ) . "'";
 
        $child_count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(ID) FROM {$wpdb->posts} WHERE post_parent = %d AND post_status IN ( {$post_status} ) AND post_type = '%s';", $parent_id, $post_type ) );
        wp_cache_set( $cache_id, $child_count, 'bbpress_posts' );
    }
 
    // Filter and return
    return apply_filters( 'bbp_get_public_child_count', (int) $child_count, $parent_id, $post_type );
}

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.