We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Fires before sending an Activity to inboxes.
/** * Fires before sending an Activity to inboxes. * * @param string $json * @param array $inboxes * @param int $outbox_item_id */ function my_activitypub_pre_send_to_inboxes_callback( string $json, array $inboxes, int $outbox_item_id ) { // Your code here. } add_action( 'activitypub_pre_send_to_inboxes', 'my_activitypub_pre_send_to_inboxes_callback', 10, 3 );
string
$json
array
$inboxes
int
$outbox_item_id
\do_action( 'activitypub_pre_send_to_inboxes', $json, $inboxes, $outbox_item_id )
← All Hooks