bbp_update_forum_reply_count

bbp_update_forum_reply_count

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_update_forum_reply_count') is found 1 times:

  • /includes/forums/functions.php line 1949
    1945
    1946
    1947
    1948
    1949
    1950
    1951
    1952
    1953
    1954
    1955
        update_post_meta( $forum_id, '_bbp_reply_count',       $reply_count   );
        update_post_meta( $forum_id, '_bbp_total_reply_count', $total_replies );
     
        // Filter & return
        return (int) apply_filters( 'bbp_update_forum_reply_count', $total_replies, $forum_id );
    }
     
    /**
     * Adjust the total hidden reply count of a forum
     *
     * @since 2.6.0 bbPress (r6922)