-
Notifications
You must be signed in to change notification settings - Fork 81
activitypub_rest_outbox_array
github-actions[bot] edited this page Aug 7, 2025
·
5 revisions
Filter the ActivityPub outbox array.
add_filter(
'activitypub_rest_outbox_array',
function(
array $response,
WP_REST_Request $request
) {
// Your code here.
return $response;
},
10,
2
);
-
array
$response
The ActivityPub outbox array. -
WP_REST_Request
$request
The request object.
\apply_filters( 'activitypub_rest_outbox_array', $response, $request )
Follow @[email protected] for updates and news.