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 content parser used for site.standard.document records.
/** * Filters the content parser used for site.standard.document records. * * @param Atmosphere\Content_Parser $parser * @param WP_Post $post * @return Atmosphere\Content_Parser The filtered value. */ function my_atmosphere_content_parser_callback( Atmosphere\Content_Parser $parser = null, WP_Post $post ) { // Your code here. return null; } add_filter( 'atmosphere_content_parser', 'my_atmosphere_content_parser_callback', 10, 2 );
Atmosphere\Content_Parser|null
$parser
WP_Post
$post
\apply_filters( 'atmosphere_content_parser', null, $this->object )
← All Hooks