From eda09eccfbb0516175826673aaf325cfed771676 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 7 Oct 2021 13:14:43 +0000 Subject: [PATCH] Docs: Add a `@since` note for the new `$parent_block` parameter of several filters: * `pre_render_block` * `render_block_data` * `render_block_context` Follow-up to [51894]. See #51612. git-svn-id: https://develop.svn.wordpress.org/trunk@51895 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/blocks.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wp-includes/blocks.php b/src/wp-includes/blocks.php index 0ab0e7ca6a..72330aa578 100644 --- a/src/wp-includes/blocks.php +++ b/src/wp-includes/blocks.php @@ -819,6 +819,7 @@ function render_block( $parsed_block ) { * Allows render_block() to be short-circuited, by returning a non-null value. * * @since 5.1.0 + * @since 5.9.0 The `$parent_block` parameter was added. * * @param string|null $pre_render The pre-rendered content. Default null. * @param array $parsed_block The block being rendered. @@ -835,6 +836,7 @@ function render_block( $parsed_block ) { * Filters the block being rendered in render_block(), before it's processed. * * @since 5.1.0 + * @since 5.9.0 The `$parent_block` parameter was added. * * @param array $parsed_block The block being rendered. * @param array $source_block An un-modified copy of $parsed_block, as it appeared in the source content. @@ -860,6 +862,7 @@ function render_block( $parsed_block ) { * Filters the default context provided to a rendered block. * * @since 5.5.0 + * @since 5.9.0 The `$parent_block` parameter was added. * * @param array $context Default context. * @param array $parsed_block Block being rendered, filtered by `render_block_data`.