We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
$result
string
$actor_id
\do_action( 'activitypub_move_failed', $result, $actor_id )
← All Hooks