customize_save_after WordPress Action Hook
The customize_save_after hook is triggered after the theme customizer settings are saved. This hook is useful for performing actions after the user has saved their customizations.
do_action( 'customize_save_after', WP_Customize_Manager $manager ) #
Fires after Customize settings have been saved.
Parameters
- $manager
(WP_Customize_Manager)WP_Customize_Manager instance.
Source
Changelog
Version | Description |
---|---|
3.6.0 | Introduced. |