diff --git a/wp-includes/block-template.php b/wp-includes/block-template.php index 18df594605..6da3908203 100644 --- a/wp-includes/block-template.php +++ b/wp-includes/block-template.php @@ -239,9 +239,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 ef3d800aeb..cb36f50df7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55760'; +$wp_version = '6.3-alpha-55761'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.