customize_save_after
The WordPress Core customize save after hook.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'customize_set_last_used' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'customize_save_after', $array );
- The following example is for adding a hook callback.
- // define the customize_save_after callback
- function action_customize_save_after( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'customize_save_after', 'action_customize_save_after', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'customize_save_after', 'action_customize_save_after', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /wp-admin/custom-header.php
- add_action( 'customize_save_after', array( $this, 'customize_set_last_used' ) );
- /wp-includes/class-wp-customize-manager.php
- do_action( 'customize_save_after', $this );