mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
Fix parsing of inner blocks when auto-generating an excerpt. Helps to prevent cases where dynamic inner blocks may cause an infinite loop if trying to auto-generate an excerpt.
Props desrosj, pento, gziolo, azaozz. Fixes #46133. Built from https://develop.svn.wordpress.org/trunk@45265 git-svn-id: http://core.svn.wordpress.org/trunk@45074 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ac7877ce6f
commit
655c21bbea
@ -125,10 +125,9 @@ function get_dynamic_block_names() {
|
|||||||
* @return string The parsed and filtered content.
|
* @return string The parsed and filtered content.
|
||||||
*/
|
*/
|
||||||
function excerpt_remove_blocks( $content ) {
|
function excerpt_remove_blocks( $content ) {
|
||||||
$allowed_blocks = array(
|
$allowed_inner_blocks = array(
|
||||||
// Classic blocks have their blockName set to null.
|
// Classic blocks have their blockName set to null.
|
||||||
null,
|
null,
|
||||||
'core/columns',
|
|
||||||
'core/freeform',
|
'core/freeform',
|
||||||
'core/heading',
|
'core/heading',
|
||||||
'core/html',
|
'core/html',
|
||||||
@ -141,6 +140,9 @@ function excerpt_remove_blocks( $content ) {
|
|||||||
'core/table',
|
'core/table',
|
||||||
'core/verse',
|
'core/verse',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$allowed_blocks = array_merge( $allowed_inner_blocks, array( 'core/columns' ) );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filters the list of blocks that can contribute to the excerpt.
|
* Filters the list of blocks that can contribute to the excerpt.
|
||||||
*
|
*
|
||||||
@ -154,12 +156,55 @@ function excerpt_remove_blocks( $content ) {
|
|||||||
$allowed_blocks = apply_filters( 'excerpt_allowed_blocks', $allowed_blocks );
|
$allowed_blocks = apply_filters( 'excerpt_allowed_blocks', $allowed_blocks );
|
||||||
$blocks = parse_blocks( $content );
|
$blocks = parse_blocks( $content );
|
||||||
$output = '';
|
$output = '';
|
||||||
|
|
||||||
foreach ( $blocks as $block ) {
|
foreach ( $blocks as $block ) {
|
||||||
if ( in_array( $block['blockName'], $allowed_blocks, true ) ) {
|
if ( in_array( $block['blockName'], $allowed_blocks, true ) ) {
|
||||||
|
if ( ! empty( $block['innerBlocks'] ) ) {
|
||||||
|
if ( 'core/columns' === $block['blockName'] ) {
|
||||||
|
$output .= _excerpt_render_inner_columns_blocks( $block, $allowed_inner_blocks );
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Skip the block if it has disallowed or nested inner blocks.
|
||||||
|
foreach ( $block['innerBlocks'] as $inner_block ) {
|
||||||
|
if (
|
||||||
|
! in_array( $inner_block['blockName'], $allowed_inner_blocks, true ) ||
|
||||||
|
! empty( $inner_block['innerBlocks'] )
|
||||||
|
) {
|
||||||
|
continue 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$output .= render_block( $block );
|
$output .= render_block( $block );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $output;
|
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Render inner blocks from the `core/columns` block for generating an excerpt.
|
||||||
|
*
|
||||||
|
* @since 5.2.0
|
||||||
|
* @access private
|
||||||
|
*
|
||||||
|
* @param array $columns The parsed columns block.
|
||||||
|
* @param array $allowed_blocks The list of allowed inner blocks.
|
||||||
|
* @return string The rendered inner blocks.
|
||||||
|
*/
|
||||||
|
function _excerpt_render_inner_columns_blocks( $columns, $allowed_blocks ) {
|
||||||
|
$output = '';
|
||||||
|
|
||||||
|
foreach ( $columns['innerBlocks'] as $column ) {
|
||||||
|
foreach ( $column['innerBlocks'] as $inner_block ) {
|
||||||
|
if ( in_array( $inner_block['blockName'], $allowed_blocks, true ) && empty( $inner_block['innerBlocks'] ) ) {
|
||||||
|
$output .= render_block( $inner_block );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.2-beta3-45264';
|
$wp_version = '5.2-beta3-45265';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
Block a user