This filter can be used for adding new classes to the comment author name.
Changelog
Since 7.0.0 version
Parameters
$class (type: string) – the class that should be added to the comment author name div
Usage
add_filter("wpdiscuz_username_classes", function ($class) { $class .= " my-custom-username-class"; return $class; });