customize_preview_<type>
Fires when the WP_Customize_Setting::preview() method is called for settings not handled as theme_mods or options.
Description
The dynamic portion(s) of the hook name refer to the setting type.
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_preview_{$type}', $instance );
- The following example is for adding a hook callback.
- // define the customize_preview_<type> callback
- function action_customize_preview_type( $instance ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "customize_preview_{$type}", 'action_customize_preview_type', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "customize_preview_{$type}", 'action_customize_preview_type', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-customize-setting.php
- do_action( "customize_preview_{$this->type}", $this );