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



_excerpt_render_inner_blocks › WordPress Function

Since5.8.0
已弃用n/a
_excerpt_render_inner_blocks ( $parsed_block, $allowed_blocks )
访问:
  • private
参数: (2)
  • (array) $parsed_block The parsed block.
    Required: Yes
  • (array) $allowed_blocks The list of allowed inner blocks.
    Required: Yes
返回:
  • (string) The rendered inner blocks.
定义在:
文档:

Renders inner blocks from the allowed wrapper blocks for generating an excerpt.



源码

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