Warning: This function has been deprecated. Use _excerpt_render_inner_blocks() instead.

Alert: 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.

_excerpt_render_inner_columns_blocks() WordPress Function

The _excerpt_render_inner_columns_blocks() function is used to render the inner columns of blocks in an excerpt. This function is called by the _excerpt_render_blocks() function.

_excerpt_render_inner_columns_blocks( array $columns, array $allowed_blocks ) #

Render inner blocks from the core/columns block for generating an excerpt.


Description

Top ↑

See also


Top ↑

Parameters

$columns

(array)(Required)The parsed columns block.

$allowed_blocks

(array)(Required)The list of allowed inner blocks.


Top ↑

Return

(string) The rendered inner blocks.


Top ↑

Source

File: wp-includes/deprecated.php

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 );
}


Top ↑

Changelog

Changelog
VersionDescription
5.8.0Use _excerpt_render_inner_blocks() introduced in 5.8.0.
5.2.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.