customize_update_<type>
Fires when the WP_Customize_Setting::update() method is called for settings not handled as theme_mods or options.
Description
The dynamic portion(s) of the hook name refer to the type of setting.
Parameters (2)
- 0. $value (mixed)
- Value of the setting.
- 1. $instance (WP_Customize_Setting)
-
WP_Customize_Setting
instance.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'customize_update_{$type}', $value, $instance );
- The following example is for adding a hook callback.
- // define the customize_update_<type> callback
- function action_customize_update_type( $value, $instance ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "customize_update_{$type}", 'action_customize_update_type', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "customize_update_{$type}", 'action_customize_update_type', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-customize-setting.php
- do_action( "customize_update_{$this->type}", $value, $this );