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 Mar 31, 2026
·
1 revision
Fires after an Arrive activity has created a local blog post.
Auto-generated Example
/** * Fires after an Arrive activity has created a local blog post. * * @param int $post_id * @param array $location * @param array $data * @param int $user_id */functionmy_activitypub_outbox_arrive_sent_callback( int$post_id, array$location = null, array$data, int$user_id ) {
// Your code here.
}
add_action( 'activitypub_outbox_arrive_sent', 'my_activitypub_outbox_arrive_sent_callback', 10, 4 );
Parameters
int$post_id The created post ID.
array|null$location The location data from the activity.