customize_save_<id_data_base>
Fires when the WP_Customize_Setting::save() method is called.
Description
The dynamic portion(s) of the hook name, $this
->id_data[base']' refers to the base slug of the setting name.
Parameters (1)
- 0. $instance (WP_Customize_Setting)
-
WP_Customize_Setting
instance.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'customize_save_{$id_data_base}', $instance );
- The following example is for adding a hook callback.
- // define the customize_save_<id_data_base> callback
- function action_customize_save_id_data_base( $instance ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "customize_save_{$id_data_base}", 'action_customize_save_id_data_base', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "customize_save_{$id_data_base}", 'action_customize_save_id_data_base', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-customize-setting.php
- do_action( 'customize_save_' . $this->id_data['base'], $this );