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.
Fired when an actor is unblocked.
/** * Fired when an actor is unblocked. * * @param string $value * @param string $type * @param int $user_id */ function my_activitypub_remove_user_block_callback( string $value, string $type, int $user_id ) { // Your code here. } add_action( 'activitypub_remove_user_block', 'my_activitypub_remove_user_block_callback', 10, 3 );
string
$value
$type
int
$user_id
\do_action( 'activitypub_remove_user_block', $value, $type, $user_id )
\do_action( 'activitypub_remove_user_block', $value, Moderation::TYPE_ACTOR, $user_id )
← All Hooks