jetpack_<transient>_change
The WordPress Core jetpack transient change hook.
Description
Parameters (1)
- 0. $value (unknown)
- The value.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_{$transient}_change', $value );
- The following example is for adding a hook callback.
- // define the jetpack_<transient>_change callback
- function action_jetpack_transient_change( $value ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "jetpack_{$transient}_change", 'action_jetpack_transient_change', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "jetpack_{$transient}_change", 'action_jetpack_transient_change', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /sync/class.jetpack-sync-module-updates.php
- do_action( "jetpack_{$transient}_change", $value );