diff --git a/src/wp-includes/blocks/shortcode.php b/src/wp-includes/blocks/shortcode.php
index 97a40b386d..05f51bf0ae 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 | /** |
diff --git a/src/wp-includes/default-filters.php b/src/wp-includes/default-filters.php
index 82b579913a..c9480ac253 100644
a
|
b
|
add_action( 'template_redirect', 'redirect_canonical' ); |
618 | 618 | add_action( 'template_redirect', 'wp_redirect_admin_locations', 1000 ); |
619 | 619 | |
620 | 620 | // Shortcodes. |
621 | | add_filter( 'the_content', 'do_shortcode', 11 ); // AFTER wpautop(). |
| 621 | add_filter( 'the_content', 'do_shortcode', 9 ); // AFTER wpautop(). |
622 | 622 | |
623 | 623 | // Media. |
624 | 624 | add_action( 'wp_playlist_scripts', 'wp_playlist_scripts' ); |