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.
Filters whether a comment should be published to Bluesky.
/** * Filters whether a comment should be published to Bluesky. * * @param bool $should * @param WP_Comment $comment * @return bool The filtered value. */ function my_atmosphere_should_publish_comment_callback( bool $should, WP_Comment $comment ) { // Your code here. return $should; } add_filter( 'atmosphere_should_publish_comment', 'my_atmosphere_should_publish_comment_callback', 10, 2 );
bool
$should
WP_Comment
$comment
\apply_filters( 'atmosphere_should_publish_comment', $should, $comment )
← All Hooks