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 after a Bluesky reaction is synced as a WordPress comment.
/** * Fires after a Bluesky reaction is synced as a WordPress comment. * * @param int $comment_id * @param array $notification * @param int $post_id * @param mixed $string */ function my_atmosphere_reaction_synced_callback( int $comment_id, array $notification, int $post_id, string ) { // Your code here. } add_action( 'atmosphere_reaction_synced', 'my_atmosphere_reaction_synced_callback', 10, 4 );
int
$comment_id
array
$notification
$post_id
string
$comment_type
\do_action( 'atmosphere_reaction_synced', $comment_id, $notification, $post_id, $comment_type )
← All Hooks