wp-includes/blocks.php:2650Applies standard content filters similar to the 'the_content' filter.
$contentstring$contextstringoptional''$seen_idsarray|nulloptionalnull$idstring|nulloptionalnullstringfunction _wp_apply_block_content_filters( $content, $context = '', &$seen_ids = null, $id = null ) { $content = shortcode_unautop( $content ); $content = do_shortcode( $content ); if ( null !== $seen_ids && null !== $id ) { $seen_ids[ $id ] = true; } try { $content = do_blocks( $content ); } finally { if ( null !== $seen_ids && null !== $id ) { unset( $seen_ids[ $id ] ); } } $content = wptexturize( $content ); $content = convert_smilies( $content ); $content = wp_filter_content_tags( $content, $context ); global $wp_embed; $content = $wp_embed->autoembed( $content ); return $content;}Introduced in 7.1.0.
Signature, return type and hooks compared across 1 parsed release.
src/wp-includes/blocks.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.