Skip to content

activitypub_move_failed

github-actions[bot] edited this page Mar 30, 2026 · 1 revision

Fires when an actor move fails during domain change.

Auto-generated Example

/**
 * 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 );

Parameters

  • WP_Error $result The error that occurred.
  • string $actor_id The actor ID that failed to move.

Files

\do_action( 'activitypub_move_failed', $result, $actor_id )

← All Hooks

Users

Developers

Clone this wiki locally