customize_save_after
Fires after Customize settings have been saved.
Usage
add_action( 'customize_save_after', 'wp_kama_customize_save_after_action' ); /** * Function for `customize_save_after` action-hook. * * @param WP_Customize_Manager $manager WP_Customize_Manager instance. * * @return void */ function wp_kama_customize_save_after_action( $manager ){ // action... }
- $manager(WP_Customize_Manager)
- WP_Customize_Manager instance.
Changelog
Since 3.6.0 | Introduced. |
Where the hook is called
customize_save_after
wp-includes/class-wp-customize-manager.php 3601
do_action( 'customize_save_after', $this );
Where the hook is used in WordPress
wp-admin/includes/class-custom-image-header.php 64
add_action( 'customize_save_after', array( $this, 'customize_set_last_used' ) );
wp-includes/default-filters.php 285
add_action( $action, '_delete_option_fresh_site', 0 );