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 10, 2026
·
20 revisions
Action triggered prior to the ActivityPub inbox being created and sent to the client.
Auto-generated Example
/** * Action triggered prior to the ActivityPub inbox being created and sent to the client. * * @param WP_REST_Request $request */functionmy_activitypub_rest_inbox_pre_callback( WP_REST_Request$request ) {
// Your code here.
}
add_action( 'activitypub_rest_inbox_pre', 'my_activitypub_rest_inbox_pre_callback' );