bbp_bump_forum_reply_count_hidden

bbp_bump_forum_reply_count_hidden

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_bump_forum_reply_count_hidden') is found 1 times:

  • /includes/forums/functions.php line 1432
    1429
    1430
    1431
    1432
    1433
    1434
    1435
    1436
    1437
    1438
        $forum_reply_count = (int) ( $total_reply_count + $difference );
     
        // Filter & return
        return (int) apply_filters( 'bbp_bump_forum_reply_count_hidden', $forum_reply_count, $forum_id, $difference, $update_ancestors );
    }
     
    /**
     * Increase the total reply count of a forum by one.
     *
     * @since 2.6.0 bbPress (r6036)