This filter can be used for the following action in the admin page:
- adding new options,
- deleting the existing options,
- adding new tabs.
Changelog
Since 7.0.0 version
Parameters
$settings (type: array) - the array of the admin settings
Usage
add_filter("wpdiscuz_settings", function ($settings) {
$settings["core"][WpdiscuzCore::TAB_GENERAL]["title"] = "General";
return $settings;
});
