wpseek.com
WordPress开发者和主题制作者的搜索引擎



_excerpt_render_inner_columns_blocks › WordPress Function

Since5.2.0
已弃用5.8.0
_excerpt_render_inner_columns_blocks ( $columns, $allowed_blocks )
访问:
  • private
参数: (2)
  • (array) $columns The parsed columns block.
    Required: Yes
  • (array) $allowed_blocks The list of allowed inner blocks.
    Required: Yes
查看:
返回:
  • (string) The rendered inner blocks.
定义在:
文档:

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



源码

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