You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page Jun 2, 2026
·
18 revisions
Action triggered after the ActivityPub profile has been created and sent to the client.
Auto-generated Example
/** * Action triggered after the ActivityPub profile has been created and sent to the client. * * @param WP_REST_Request $request */functionmy_activitypub_rest_outbox_post_callback( WP_REST_Request$request ) {
// Your code here.
}
add_action( 'activitypub_rest_outbox_post', 'my_activitypub_rest_outbox_post_callback' );