update_option_<option>
Fires after the value of a specific option has been successfully updated.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'updated_option_action' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'update_option_{$option}', $array );
- The following example is for adding a hook callback.
- // define the update_option_<option> callback
- function action_update_option_option( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "update_option_{$option}", 'action_update_option_option', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "update_option_{$option}", 'action_update_option_option', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /class.jetpack-sync.php
- add_action( "update_option_{$option}", array( $this, 'updated_option_action' ) );