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 markdown produced from post content.
/** * Filters the markdown produced from post content. * * @param string $markdown * @param string $content * @return string The filtered value. */ function my_atmosphere_html_to_markdown_callback( string $markdown, string $content ) { // Your code here. return $markdown; } add_filter( 'atmosphere_html_to_markdown', 'my_atmosphere_html_to_markdown_callback', 10, 2 );
string
$markdown
$content
\apply_filters( 'atmosphere_html_to_markdown', $markdown, $content )
← All Hooks