_excerpt_render_inner_columns_blocks

函数
_excerpt_render_inner_columns_blocks ( $columns, $allowed_blocks )
Access
Private
参数
  • (array) $columns The parsed columns block.
    Required:
  • (array) $allowed_blocks The list of allowed inner blocks.
    Required:
返回值
  • (string) The rendered inner blocks.
相关
  • _excerpt_render_inner_blocks()
定义位置
相关方法
_excerpt_render_inner_blocksexcerpt_remove_blocksrender_block_core_blockwp_render_widget_controlget_hidden_columns
引入
5.2.0
弃用
5.8.0

excerpt_render_inner_columns_blocks: 该函数用于在块编辑器中渲染带列的摘录块的内部块: 这个函数被WordPress内部用来渲染带列的摘录块。

渲染来自`core/columns`块的内部区块,用于生成一个摘录。

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

常见问题

FAQs
查看更多 >