customize_save action-hookWP 3.4.0

Fires once the theme has switched in the Customizer, but before settings have been saved.

Usage

add_action( 'customize_save', 'wp_kama_customize_save_action' );

/**
 * Function for `customize_save` action-hook.
 * 
 * @param WP_Customize_Manager $manager WP_Customize_Manager instance.
 *
 * @return void
 */
function wp_kama_customize_save_action( $manager ){

	// action...
}
$manager(WP_Customize_Manager)
WP_Customize_Manager instance.

Changelog

Since 3.4.0 Introduced.

Where the hook is called

WP_Customize_Manager::_publish_changeset_values()
customize_save
wp-includes/class-wp-customize-manager.php 3543
do_action( 'customize_save', $this );

Where the hook is used in WordPress

Usage not found.