diff --git a/wp-includes/block-template.php b/wp-includes/block-template.php index 10434dacb1..f6b8581e24 100644 --- a/wp-includes/block-template.php +++ b/wp-includes/block-template.php @@ -240,9 +240,7 @@ function get_the_block_template_html() { $content = do_blocks( $content ); $content = wptexturize( $content ); $content = convert_smilies( $content ); - $content = shortcode_unautop( $content ); $content = wp_filter_content_tags( $content, 'template' ); - $content = do_shortcode( $content ); $content = str_replace( ']]>', ']]>', $content ); // Wrap block template in .wp-site-blocks to allow for specific descendant styles diff --git a/wp-includes/version.php b/wp-includes/version.php index 1bff217b98..76fd14727a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2.1-RC1-55765'; +$wp_version = '6.2.1-RC1-55766'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.