wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_excerpt_render_inner_blocks is private and should not be used in themes or plugins directly.
_excerpt_render_inner_blocks › WordPress Function
Seit5.8.0
Veraltetn/v
› _excerpt_render_inner_blocks ( $parsed_block, $allowed_blocks )
Zugriff: |
|
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Renders inner blocks from the allowed wrapper blocks for generating an excerpt.
Quellcode
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; }