PluginProbe
Gutenberg / 22.7.0
Gutenberg v22.7.0
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
← All changes | build/scripts/block-library/template-part.php +16 -1 23.6.2 → 22.7.0 View file →
@@ -149,9 +149,24 @@
149 149 $area = WP_TEMPLATE_PART_AREA_UNCATEGORIZED;
150 150 }
151 151
152 152 // Run through the actions that are typically taken on the_content.
153 - $content = _wp_apply_block_content_filters( $content, "template_part_{$area}", $seen_ids, $template_part_id );
153 + $content = shortcode_unautop( $content );
154 + $content = do_shortcode( $content );
155 + $seen_ids[ $template_part_id ] = true;
156 + $content = do_blocks( $content );
157 + unset( $seen_ids[ $template_part_id ] );
158 + $content = wptexturize( $content );
159 + $content = convert_smilies( $content );
160 + $content = wp_filter_content_tags( $content, "template_part_{$area}" );
161 +
162 + /**
163 + * Handle embeds for block template parts.
164 + *
165 + * @global WP_Embed $wp_embed WordPress Embed object.
166 + */
167 + global $wp_embed;
168 + $content = $wp_embed->autoembed( $content );
154 169
155 170 if ( empty( $attributes['tagName'] ) || tag_escape( $attributes['tagName'] ) !== $attributes['tagName'] ) {
156 171 $area_tag = 'div';
157 172 if ( $area_definition && isset( $area_definition['area_tag'] ) ) {