There was an error while loading. Please reload this page.
Filter the ActivityPub outbox array.
/** * Filter the ActivityPub outbox array. * * @param array $response * @param WP_REST_Request $request * @return array The filtered value. */ function my_activitypub_rest_outbox_array_callback( array $response, WP_REST_Request $request ) { // Your code here. return $response; } add_filter( 'activitypub_rest_outbox_array', 'my_activitypub_rest_outbox_array_callback', 10, 2 );
array
$response
WP_REST_Request
$request
\apply_filters( 'activitypub_rest_outbox_array', $response, $request )
← All Hooks