bsearch_settings_wizard_steps
Filters the wizard steps.
Type: filter
Since: 4.2.0
Source: includes/admin/class-settings-wizard.php line 151
Parameters
| Type | Name | Description |
|---|---|---|
array | $steps | Wizard steps. |
array | $all_settings | All settings array. |
array | $all_settings_grouped | All settings grouped by section. |
Usage
add_filter( 'bsearch_settings_wizard_steps', function($steps, $all_settings, $all_settings_grouped) {
// ...
return $steps;
} );