_excerpt_render_inner_columns_blocks()
Deprecated since 5.8.0. It is no longer supported and may 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.
Returns
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.9
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 );
}