-
Notifications
You must be signed in to change notification settings - Fork 83
activitypub_additional_inboxes
github-actions[bot] edited this page Jul 29, 2025
·
12 revisions
Filters the list of inboxes to send the Activity to.
add_filter(
'activitypub_additional_inboxes',
'my_activitypub_additional_inboxes_callback',
10,
3
);
function my_activitypub_additional_inboxes_callback(
array $inboxes,
int $actor_id,
Activitypub\Activity $activity
) {
// Your code here.
return $inboxes;
}-
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.