The filter can be used to control the parameters passed to the get_comments() function when either the sorting or load more options are enabled.
Parameters
$args (type: array) – the array of the arguments passed to the get_comments
Usage
add_filter("wpdiscuz_filter_args", function ($args) {
$args["orderby"] = "comment_date";
$args["order"] = "asc";
return $args;
});
Changelog
Since 7.0.0 version
