jetpack_sync_callable
The WordPress Core jetpack sync callable hook.
Description
Parameters (3)
- 0. $callable (unknown)
- The callable.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_sync_callable', $callable, $int, $int );
- The following example is for adding a hook callback.
- // define the jetpack_sync_callable callback
- function action_jetpack_sync_callable( $callable, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'jetpack_sync_callable', 'action_jetpack_sync_callable', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'jetpack_sync_callable', 'action_jetpack_sync_callable', 10, 3 );
Defined (2)
The action is defined in the following location(s).
- /sync/class.jetpack-sync-module-callables.php
- add_action( 'jetpack_sync_callable', $callable, 10, 2 );
- do_action( 'jetpack_sync_callable', $name, $value );