Skip to content

activitypub_inbox_post

github-actions[bot] edited this page Apr 21, 2026 · 19 revisions

DEPRECATED This hook was deprecated in version 8.1.0. Use activitypub_rest_inbox_post instead.

Action triggered after the ActivityPub inbox has been created and sent to the client.

Auto-generated Example

/**
 * Action triggered after the ActivityPub inbox has been created and sent to the client.
 *
 * @param WP_REST_Request $request 
 * @param string          $8_1_0 
 * @param string          $activitypub_rest_inbox_post 
 */
function my_activitypub_inbox_post_callback( WP_REST_Request $request, string $8_1_0, string $activitypub_rest_inbox_post ) {
    // Your code here.
}
add_action( 'activitypub_inbox_post', 'my_activitypub_inbox_post_callback', 10, 3 );

Parameters

  • WP_REST_Request $request The request object.
  • string $8_1_0
  • string $activitypub_rest_inbox_post

Files

\do_action_deprecated(
			'activitypub_inbox_post',
			array( $request ),
			'8.1.0',
			'activitypub_rest_inbox_post'
		)

← All Hooks

Users

Developers

Clone this wiki locally