On this page
_excerpt_render_inner_columns_blocks( array $columns, array $allowed_blocks ): string
This function has been deprecated. Use _excerpt_render_inner_blocks() instead.
This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use _excerpt_render_inner_blocks() instead.
Render inner blocks from the core/columns block for generating an excerpt.
Description
See also
Parameters
$columnsarray Required-
The parsed columns block.
$allowed_blocksarray Required-
The list of allowed inner blocks.
Return
string The rendered inner blocks.
Source
File: wp-includes/deprecated.php. View all references
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 );
}
Related
Uses
| Uses | Description |
|---|---|
| _excerpt_render_inner_blocks() wp-includes/blocks.php | Renders inner blocks from the allowed wrapper blocks for generating an excerpt. |
| _deprecated_function() wp-includes/functions.php | Marks a function as deprecated and inform when it has been used. |
Changelog
| Version | Description |
|---|---|
| 5.8.0 | Use _excerpt_render_inner_blocks() introduced in 5.8.0. |
| 5.2.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_excerpt_render_inner_columns_blocks