Editor: Restore shortcode support for block templates.
Follow up to [55761]. Props youknowriad, Clorith, desrosj, antpb, Otto42, johnbillion, jorbin, rmccue, timothyblynjacobs, mikeschroder, peterwilsoncc, audrasjb, matveb, noisysocks, xknown, ehtis, isabel_brison, talldanwp, gziolo, chriscct7, davidbaumwald. Fixes #58333. Built from https://develop.svn.wordpress.org/trunk@55828 git-svn-id: http://core.svn.wordpress.org/trunk@55340 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
046b9afcb7
commit
2bb3a51695
|
@ -236,6 +236,8 @@ function get_the_block_template_html() {
|
||||||
|
|
||||||
$content = $wp_embed->run_shortcode( $_wp_current_template_content );
|
$content = $wp_embed->run_shortcode( $_wp_current_template_content );
|
||||||
$content = $wp_embed->autoembed( $content );
|
$content = $wp_embed->autoembed( $content );
|
||||||
|
$content = shortcode_unautop( $content );
|
||||||
|
$content = do_shortcode( $content );
|
||||||
$content = do_blocks( $content );
|
$content = do_blocks( $content );
|
||||||
$content = wptexturize( $content );
|
$content = wptexturize( $content );
|
||||||
$content = convert_smilies( $content );
|
$content = convert_smilies( $content );
|
||||||
|
|
|
@ -142,14 +142,14 @@ function render_block_core_template_part( $attributes ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Run through the actions that are typically taken on the_content.
|
// Run through the actions that are typically taken on the_content.
|
||||||
|
$content = shortcode_unautop( $content );
|
||||||
|
$content = do_shortcode( $content );
|
||||||
$seen_ids[ $template_part_id ] = true;
|
$seen_ids[ $template_part_id ] = true;
|
||||||
$content = do_blocks( $content );
|
$content = do_blocks( $content );
|
||||||
unset( $seen_ids[ $template_part_id ] );
|
unset( $seen_ids[ $template_part_id ] );
|
||||||
$content = wptexturize( $content );
|
$content = wptexturize( $content );
|
||||||
$content = convert_smilies( $content );
|
$content = convert_smilies( $content );
|
||||||
$content = shortcode_unautop( $content );
|
|
||||||
$content = wp_filter_content_tags( $content, "template_part_{$area}" );
|
$content = wp_filter_content_tags( $content, "template_part_{$area}" );
|
||||||
$content = do_shortcode( $content );
|
|
||||||
|
|
||||||
// Handle embeds for block template parts.
|
// Handle embeds for block template parts.
|
||||||
global $wp_embed;
|
global $wp_embed;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.3-alpha-55827';
|
$wp_version = '6.3-alpha-55828';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue