-
Notifications
You must be signed in to change notification settings - Fork 81
activitypub_outbox_processing_complete
github-actions[bot] edited this page Jul 23, 2025
·
1 revision
Fires when the followers are complete.
add_filter(
'activitypub_outbox_processing_complete',
function (
array $inboxes,
string $json,
int $actor_id,
int $outbox_item_id,
int $batch_size,
int $offset
) {
// Your code here
return $inboxes;
},
10,
6
);
-
array
$inboxes
The inboxes. -
string
$json
The ActivityPub Activity JSON -
int
$actor_id
The actor ID. -
int
$outbox_item_id
The Outbox item ID. -
int
$batch_size
The batch size. -
int
$offset
The offset.
\do_action( 'activitypub_outbox_processing_complete', $inboxes, $json, $actor->get__id(), $outbox_item_id, $batch_size, $offset )