This action can be used to display an HTML on the loaded tab after all options.
Changelog
since 7.0.0 version
Parameters
1. $tab (type: string) – the slug of the tab that is currently loaded
2. $setting (type: array) – the array of the settings of the active (loaded) tab
Usage
add_action("wpdiscuz_settings_tab_after", function ($tab, $setting) { if ($tab === WpdiscuzCore::TAB_GENERAL) { echo "Custom Message
"; } }, 10, 2);