Allows render_block() to be short-circuited, by returning a non-null value.
Parameters
$pre_render
string|null- The pre-rendered content. Default null.
$parsed_block
array- A representative array of the block being rendered. See WP_Block_Parser_Block.
blockName
stringName of block.attrs
arrayAttributes from block comment delimiters.innerBlocks
array[]List of inner blocks. An array of arrays that have the same structure as this one.innerHTML
stringHTML from inside block comment delimiters.innerContent
arrayList of string fragments and null markers where inner blocks were found.
$parent_block
WP_Block|null- If this is a nested block, a reference to the parent block.
Source
$pre_render = apply_filters( 'pre_render_block', null, $parsed_block, $parent_block );
User Contributed Notes
You must log in before being able to contribute a note or feedback.