WordPress Version: 6.1
/**
* Render inner blocks from the `core/columns` block for generating an excerpt.
*
* @since 5.2.0
* @access private
* @deprecated 5.8.0 Use _excerpt_render_inner_blocks() introduced in 5.8.0.
*
* @see _excerpt_render_inner_blocks()
*
* @param array $columns The parsed columns block.
* @param array $allowed_blocks The list of allowed inner blocks.
* @return string The rendered inner blocks.
*/
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);
}