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.
This filter is documented in Post::transform() above.
/** * This filter is documented in Post::transform() above. * * @param array $record * @param WP_Post $post * @param array $context * @return array The filtered value. */ function my_atmosphere_transform_bsky_post_callback( array $record, WP_Post $post, array $context ) { // Your code here. return $record; } add_filter( 'atmosphere_transform_bsky_post', 'my_atmosphere_transform_bsky_post_callback', 10, 3 );
array
$record
WP_Post
$post
$context
\apply_filters( 'atmosphere_transform_bsky_post', $record, $this->object, array( 'strategy' => $is_short ? 'short-form' : 'link-card', 'thread_index' => 0, 'is_thread_reply' => false, ) )
\apply_filters( 'atmosphere_transform_bsky_post', $record, $this->object, $context )
\apply_filters( 'atmosphere_transform_bsky_post', $record, $this->object, array( 'strategy' => 'link-card', 'thread_index' => 0, 'is_thread_reply' => false, ) )
← All Hooks