There was an error while loading. Please reload this page.
Action triggered after reconciliation is complete.
/** * Action triggered after reconciliation is complete. * * @param int $user_id * @param string $actor_url */ function my_activitypub_followers_sync_reconciled_callback( int $user_id, string $actor_url ) { // Your code here. } add_action( 'activitypub_followers_sync_reconciled', 'my_activitypub_followers_sync_reconciled_callback', 10, 2 );
int
$user_id
string
$actor_url
\do_action( 'activitypub_followers_sync_reconciled', $user_id, $actor_url )
← All Hooks