diff --git a/wp-includes/blocks/block.php b/wp-includes/blocks/block.php
index d51b35d..47f59eb 100644
|
a
|
b
|
function render_block_core_block( $attributes ) { |
| 46 | 46 | $content = $wp_embed->run_shortcode( $reusable_block->post_content ); |
| 47 | 47 | $content = $wp_embed->autoembed( $content ); |
| 48 | 48 | |
| | 49 | $content = shortcode_unautop( $content ); |
| | 50 | $content = do_shortcode( $content ); |
| | 51 | |
| 49 | 52 | $content = do_blocks( $content ); |
| 50 | 53 | unset( $seen_refs[ $attributes['ref'] ] ); |
| 51 | 54 | return $content; |
diff --git a/wp-includes/blocks/shortcode.php b/wp-includes/blocks/shortcode.php
index 97a40b3..bb0b0da 100644
|
a
|
b
|
|
| 14 | 14 | * @return string Returns the block content. |
| 15 | 15 | */ |
| 16 | 16 | function render_block_core_shortcode( $attributes, $content ) { |
| 17 | | return wpautop( $content ); |
| | 17 | return $content; |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | /** |