bbp_update_topic_reply_count

bbp_update_topic_reply_count

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_update_topic_reply_count') is found 1 times:

  • /includes/topics/functions.php line 2570
    2567
    2568
    2569
    2570
    2571
    2572
    2573
    2574
    2575
    2576
        update_post_meta( $topic_id, '_bbp_reply_count', $reply_count );
     
        // Filter & return
        return (int) apply_filters( 'bbp_update_topic_reply_count', $reply_count, $topic_id );
    }
     
    /**
     * Adjust the total hidden reply count of a topic (hidden includes trashed,
     * spammed and pending replies)
     *