-
Notifications
You must be signed in to change notification settings - Fork 83
activitypub_inbox_
github-actions[bot] edited this page Aug 7, 2025
·
26 revisions
ActivityPub inbox action for specific activity types.
add_filter(
'activitypub_inbox_',
function(
array $data,
int $user_id = null,
Activitypub\Activity|\WP_Error $activity
) {
// Your code here.
return $data;
},
10,
3
);-
array$dataThe data array. -
int|null$user_idThe user ID. -
Activitypub\Activity|\WP_Error$activityThe Activity object.
\do_action( 'activitypub_inbox_' . $type, $data, $user_id, $activity )\do_action( 'activitypub_inbox_' . $type, $data, $user_id, $activity )Follow @[email protected] for updates and news.