This filter can be used for changing the arguments passed to wp_list_comments()
function.
Changelog
Since 7.0.0 version
Parameters
$args (type: array) – the arguments passed to the wp_list_comments()
function
Usage
add_filter("wpdiscuz_comment_list_args", function ($args) {
$args["reverse_top_level"] = true;
return $args;
});
</pre