-
Notifications
You must be signed in to change notification settings - Fork 82
activitypub_pre_send_to_inboxes
github-actions[bot] edited this page Aug 7, 2025
·
8 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
$json
The ActivityPub Activity JSON. -
array
$inboxes
The inboxes to send to. -
int
$outbox_item_id
The Outbox item ID.
\do_action( 'activitypub_pre_send_to_inboxes', $json, $inboxes, $outbox_item_id )
Follow @[email protected] for updates and news.