customize_save WordPress Action Hook
The customize_save Wordpress hook is triggered when a user saves their customizer settings. This hook allows you to run your own code in response to this event.
do_action( 'customize_save', WP_Customize_Manager $manager ) #
Fires once the theme has switched in the Customizer, but before settings have been saved.
Parameters
- $manager
(WP_Customize_Manager)WP_Customize_Manager instance.
Source
Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |