jetpack_sync_send_data, $items_to_send, $this->get_codec(

jetpack_sync_send_data, $items_to_send, $this->get_codec(

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('jetpack_sync_send_data, $items_to_send, $this->get_codec(') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-sync/src/class-sender.php line 726
    		$action_to_send = $this->create_action_to_send( $action_name, $data, $key );
    
    		list( $items_to_send, $skipped_items_ids, $items, $preprocess_duration ) = $this->get_items_to_send( $action_to_send, true ); // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
    		Settings::set_is_sending( true );
    		$processed_item_ids = apply_filters( 'jetpack_sync_send_data', $items_to_send, $this->get_codec()->name(), microtime( true ), 'immediate-send', 0, $preprocess_duration );
    		Settings::set_is_sending( false );
    
    		/**
    		 * Allows us to keep track of all the actions that have been sent.
    		 * Allows us to calculate the progress of specific actions.
    		 *