-
Notifications
You must be signed in to change notification settings - Fork 83
activitypub_get_outbox_activity
github-actions[bot] edited this page Jul 23, 2025
·
11 revisions
Filters the Activity object before it is returned.
add_filter(
'activitypub_get_outbox_activity',
function (
Activitypub\Activity $activity,
WP_Post $outbox_item
) {
// Your code here
return $activity;
},
10,
2
);-
Activitypub\Activity$activityThe Activity object. -
WP_Post$outbox_itemThe outbox item post object.
apply_filters( 'activitypub_get_outbox_activity', $activity, $outbox_item )Follow @[email protected] for updates and news.