-
Notifications
You must be signed in to change notification settings - Fork 83
activitypub_pre_send_to_inboxes
github-actions[bot] edited this page Jul 23, 2025
·
12 revisions
Fires before sending an Activity to inboxes.
add_filter(
'activitypub_pre_send_to_inboxes',
function (
string $json,
array $inboxes,
int $outbox_item_id
) {
// Your code here
return $json;
},
10,
3
);-
string$jsonThe ActivityPub Activity JSON. -
array$inboxesThe inboxes to send to. -
int$outbox_item_idThe Outbox item ID.
\do_action( 'activitypub_pre_send_to_inboxes', $json, $inboxes, $outbox_item_id )Follow @[email protected] for updates and news.