This hook can be used to exclude the comments’ types that should not be got when pagination is enabled.
Changelog
Since 7.0.0 version
Parameters
$typesNotIn (type: array) – the array of the comments’ types
Usage
add_filter("wpdiscuz_found_comments_query", function ($typesNotIn) { $typesNotIn[] = "myCustomType"; return $typesNotIn; });