-
Notifications
You must be signed in to change notification settings - Fork 83
activitypub_additional_inboxes
github-actions[bot] edited this page Jul 23, 2025
·
12 revisions
Filters the list of inboxes to send the Activity to.
add_filter(
'activitypub_additional_inboxes',
function (
array $inboxes,
int $actor_id,
Activitypub\Activity $activity
) {
// Your code here
return $inboxes;
},
10,
3
);-
array$inboxesThe list of inboxes to send to. -
int$actor_idThe actor ID. -
Activitypub\Activity$activityThe ActivityPub Activity.
apply_filters( 'activitypub_additional_inboxes', array(), $actor_id, $activity )Follow @[email protected] for updates and news.