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 Jul 30, 2026
·
33 revisions
Fires after an ActivityPub object is generated and sent to the client.
Auto-generated Example
/** * Fires after an ActivityPub object is generated and sent to the client. * * @param object $object */functionmy_activitypub_json_post_callback( object$object ) {
// Your code here.
}
add_action( 'activitypub_json_post', 'my_activitypub_json_post_callback' );