Filters and sanitizes a parsed block to remove non-allowable HTML from block attribute values.
Parameters
$block
WP_Block_Parser_Blockrequired- The parsed block object.
$allowed_html
array[]|stringrequired- An array of allowed HTML elements and attributes, or a context name such as
'post'
. See wp_kses_allowed_html() for the list of accepted context names. $allowed_protocols
string[]optional- Array of allowed URL protocols.
Defaults to the result of wp_allowed_protocols() .Default:
array()
Source
$nulls = array_fill( 0, count( $blocks_to_insert ), null );
array_splice( $inner_content, $content_index, 1, $nulls );
}
// Skip inserted blocks.
$i += count( $blocks_to_insert );
} else {
if ( ! empty( $blocks[ $i ]['innerBlocks'] ) ) {
$prev_inner_content = $inner_content;
$inner_content = $blocks[ $i ]['innerContent'];
$blocks[ $i ]['innerBlocks'] = resolve_pattern_blocks(
Changelog
Version | Description |
---|---|
5.3.1 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.