-
Notifications
You must be signed in to change notification settings - Fork 81
activitypub_additional_inboxes
github-actions[bot] edited this page Aug 7, 2025
·
5 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
$inboxes
The list of inboxes to send to. -
int
$actor_id
The actor ID. -
Activitypub\Activity
$activity
The ActivityPub Activity.
apply_filters( 'activitypub_additional_inboxes', array(), $actor_id, $activity )
Follow @[email protected] for updates and news.