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 12, 2026
·
1 revision
Fires after a post has been updated from an outgoing Update activity.
Auto-generated Example
/** * Fires after a post has been updated from an outgoing Update activity. * * @param int $post_id * @param array $activity * @param int $user_id */functionmy_activitypub_outbox_updated_post_callback( int$post_id, array$activity, int$user_id ) {
// Your code here.
}
add_action( 'activitypub_outbox_updated_post', 'my_activitypub_outbox_updated_post_callback', 10, 3 );