-
Notifications
You must be signed in to change notification settings - Fork 80
activitypub_handled_create
github-actions[bot] edited this page Aug 18, 2025
·
8 revisions
Fires after a Create activity has been handled.
/**
* Fires after a Create activity has been handled.
*
* @param array $activity
* @param int $user_id
* @param WP_Comment|\WP_Error $state
* @param WP_Comment|\WP_Error $reaction
* @return array The filtered value.
*/
function my_activitypub_handled_create_callback( array $activity, int $user_id, WP_Comment|\WP_Error $state, WP_Comment|\WP_Error $reaction = null ) {
// Your code here.
return $activity;
}
add_filter( 'activitypub_handled_create', 'my_activitypub_handled_create_callback', 10, 4 );
-
array
$activity
The activity-object. -
int
$user_id
The id of the local blog-user. -
WP_Comment|\WP_Error
$state
The comment object or WP_Error. -
WP_Comment|\WP_Error|null
$reaction
The reaction object or WP_Error.
\do_action( 'activitypub_handled_create', $activity, $user_id, $state, $reaction )
Follow @activitypub.blog@activitypub.blog for updates and news.