Skip to content

Commit f73d8da

Browse files
committed
Blocks: Add a $source_block parameter to the render_block_data filter.
This contains a copy of the block, unmodified by other filter functions, so that plugins have a clean reference to work from, if they need. Props dmsnell. Fixes #45451. git-svn-id: https://develop.svn.wordpress.org/trunk@44576 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 627ce6f commit f73d8da

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/wp-includes/blocks.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,14 +188,17 @@ function render_block( $block ) {
188188
return $pre_render;
189189
}
190190

191+
$source_block = $block;
192+
191193
/**
192194
* Filters the block being rendered in render_block(), before it's processed.
193195
*
194196
* @since 5.1.0
195197
*
196-
* @param array $block The block being rendered.
198+
* @param array $block The block being rendered.
199+
* @param array $source_block An un-modified copy of $block, as it appeared in the source content.
197200
*/
198-
$block = apply_filters( 'render_block_data', $block );
201+
$block = apply_filters( 'render_block_data', $block, $source_block );
199202

200203
$block_type = WP_Block_Type_Registry::get_instance()->get_registered( $block['blockName'] );
201204
$is_dynamic = $block['blockName'] && null !== $block_type && $block_type->is_dynamic();

0 commit comments

Comments
 (0)