-
Notifications
You must be signed in to change notification settings - Fork 85
activitypub_move_failed
github-actions[bot] edited this page Mar 30, 2026
·
1 revision
Fires when an actor move fails during domain change.
/**
* Fires when an actor move fails during domain change.
*
* @param WP_Error $result
* @param string $actor_id
*/
function my_activitypub_move_failed_callback( WP_Error $result, string $actor_id ) {
// Your code here.
}
add_action( 'activitypub_move_failed', 'my_activitypub_move_failed_callback', 10, 2 );-
WP_Error$resultThe error that occurred. -
string$actor_idThe actor ID that failed to move.
\do_action( 'activitypub_move_failed', $result, $actor_id )Follow @activitypub.blog@activitypub.blog for updates and news.