_excerpt_render_inner_blocks

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

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

从允许的包装区块中渲染内部区块,以生成摘录。生成一个摘录。

function _excerpt_render_inner_blocks( $parsed_block, $allowed_blocks ) {
	$output = '';

	foreach ( $parsed_block['innerBlocks'] as $inner_block ) {
		if ( ! in_array( $inner_block['blockName'], $allowed_blocks, true ) ) {
			continue;
		}

		if ( empty( $inner_block['innerBlocks'] ) ) {
			$output .= render_block( $inner_block );
		} else {
			$output .= _excerpt_render_inner_blocks( $inner_block, $allowed_blocks );
		}
	}

	return $output;
}

常见问题

FAQs
查看更多 >