bbp_update_user_reply_count

bbp_update_user_reply_count

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_update_user_reply_count') is found 1 times:

  • /includes/users/options.php line 166
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
        return false;
    }
     
    // Just in time filtering of the user's reply count
    $count = apply_filters( 'bbp_update_user_reply_count', $count, $user_id );
     
    // Bail if no count was passed
    if ( false === $count ) {
        return false;
    }