You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page Jun 19, 2026
·
1 revision
Filters whether to register the Bluesky reactions block.
Defaults to false when the ActivityPub plugin is active, since it
already renders these reactions. Return true to force the block on
regardless, or false to suppress it.
Auto-generated Example
/** * Filters whether to register the Bluesky reactions block. * * Defaults to false when the ActivityPub plugin is active, since it * already renders these reactions. Return true to force the block on * regardless, or false to suppress it. * * @param bool $register * @return bool The filtered value. */functionmy_atmosphere_register_reactions_block_callback( bool$register ) {
// Your code here.return$register;
}
add_filter( 'atmosphere_register_reactions_block', 'my_atmosphere_register_reactions_block_callback' );
Parameters
bool$register Whether to register the reactions block.