This hook can be used for adding a new tool in the “Tools” admin page
Changelog
Added in version 7.0.3
Parameters
1. $tools (type: array) – the array of info displayed in the Toll page
Usage
add_filter("wpdiscuz_dashboard_tools", function ($tools) { $tools[] = ["selector" => "custom", "file" => "PATH_TO_FILE"]; return $tools; });