Render inner blocks from the core/columns
block for generating an excerpt.
Description
See also
Parameters
$columns
arrayrequired- The parsed columns block.
$allowed_blocks
arrayrequired- The list of allowed inner blocks.
Source
function _excerpt_render_inner_columns_blocks( $columns, $allowed_blocks ) {
_deprecated_function( __FUNCTION__, '5.8.0', '_excerpt_render_inner_blocks()' );
return _excerpt_render_inner_blocks( $columns, $allowed_blocks );
}
Changelog
Version | Description |
---|---|
5.8.0 | Use _excerpt_render_inner_blocks() introduced in 5.8.0. |
5.2.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.