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 Jul 7, 2026
·
3 revisions
Filters the app.bsky.feed.post comment reply record before publishing.
Filters that return a non-array fall back to the pre-filter
record.
Auto-generated Example
/** * Filters the app.bsky.feed.post comment reply record before publishing. * * Filters that return a non-array fall back to the pre-filter * record. * * @param array $record * @param WP_Comment $comment * @return array The filtered value. */functionmy_atmosphere_transform_comment_callback( array$record, WP_Comment$comment ) {
// Your code here.return$record;
}
add_filter( 'atmosphere_transform_comment', 'my_atmosphere_transform_comment_callback', 10, 2 );