_excerpt_render_inner_columns_blocks()
Deprecated from version 5.8.0. It is no longer supported and can be removed in future releases. Use
_excerpt_render_inner_blocks() introduced in 5.8.0
instead.Render inner blocks from the core/columns block for generating an excerpt.
Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.
No Hooks.
Return
String
. The rendered inner blocks.
Usage
_excerpt_render_inner_columns_blocks( $columns, $allowed_blocks );
- $columns(array) (required)
- The parsed columns block.
- $allowed_blocks(array) (required)
- The list of allowed inner blocks.
Notes
Changelog
Since 5.2.0 | Introduced. |
Deprecated since 5.8.0 | Use _excerpt_render_inner_blocks() introduced in 5.8.0. |
_excerpt_render_inner_columns_blocks() excerpt render inner columns blocks code WP 6.7.1
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 ); }