-
Notifications
You must be signed in to change notification settings - Fork 81
activitypub_rest_outbox_post
github-actions[bot] edited this page Jul 29, 2025
·
2 revisions
Action triggered after the ActivityPub profile has been created and sent to the client.
add_filter(
'activitypub_rest_outbox_post',
'my_activitypub_rest_outbox_post_callback'
);
function my_activitypub_rest_outbox_post_callback( WP_REST_Request $request ) {
// Your code here.
return $request;
}
-
WP_REST_Request
$request
The request object.
\do_action( 'activitypub_rest_outbox_post', $request )