jetpack_sync_processed_actions
The WordPress Core jetpack sync processed actions hook.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'maybe_clear_migrate_option' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_sync_processed_actions', $array );
- The following example is for adding a hook callback.
- // define the jetpack_sync_processed_actions callback
- function action_jetpack_sync_processed_actions( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'jetpack_sync_processed_actions', 'action_jetpack_sync_processed_actions', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'jetpack_sync_processed_actions', 'action_jetpack_sync_processed_actions', 10, 1 );
Defined (3)
The action is defined in the following location(s).
- /class.jetpack-idc.php
- add_action( 'jetpack_sync_processed_actions', array( $this, 'maybe_clear_migrate_option' ) );
- /sync/class.jetpack-sync-module-full-sync.php
- add_action( 'jetpack_sync_processed_actions', array( $this, 'update_sent_progress_action' ) );
- /sync/class.jetpack-sync-sender.php
- do_action( 'jetpack_sync_processed_actions', $processed_items );