excerpt_allowed_blocks, $allowed_blocks
excerpt_allowed_blocks, $allowed_blocks
Appears in: 7.0.3
Hook Type: filter
Displaying hooks found in version: 7.0.3apply_filters('excerpt_allowed_blocks, $allowed_blocks') is found 1 times:
- /wp-includes/blocks.php line 2236
* @since 5.0.0 * * @param string[] $allowed_blocks The list of names of allowed blocks. */ $allowed_blocks = apply_filters( 'excerpt_allowed_blocks', $allowed_blocks ); $blocks = parse_blocks( $content ); $output = ''; foreach ( $blocks as $block ) { if ( in_array( $block['blockName'], $allowed_blocks, true ) ) { if ( ! empty( $block['innerBlocks'] ) ) {