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 the long-form composition strategy for this post.
/** * Filters the long-form composition strategy for this post. * * @param string $strategy * @param WP_Post $post * @return string The filtered value. */ function my_atmosphere_long_form_composition_callback( string $strategy, WP_Post $post ) { // Your code here. return $strategy; } add_filter( 'atmosphere_long_form_composition', 'my_atmosphere_long_form_composition_callback', 10, 2 );
string
$strategy
WP_Post
$post
\apply_filters( 'atmosphere_long_form_composition', 'link-card', $this->object )
← All Hooks