Changeset 58408 for trunk/src/wp-includes/blocks.php
- Timestamp:
- 06/13/2024 03:04:50 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks.php
r58356 r58408 1153 1153 } 1154 1154 1155 $attributes = array();1155 $attributes = array(); 1156 1156 $ignored_hooked_blocks = get_post_meta( $post->ID, '_wp_ignored_hooked_blocks', true ); 1157 1157 if ( ! empty( $ignored_hooked_blocks ) ) { … … 1585 1585 } else { 1586 1586 if ( ! empty( $blocks[ $i ]['innerBlocks'] ) ) { 1587 $prev_inner_content = $inner_content;1588 $inner_content = $blocks[ $i ]['innerContent'];1589 $blocks[ $i ]['innerBlocks'] = resolve_pattern_blocks(1587 $prev_inner_content = $inner_content; 1588 $inner_content = $blocks[ $i ]['innerContent']; 1589 $blocks[ $i ]['innerBlocks'] = resolve_pattern_blocks( 1590 1590 $blocks[ $i ]['innerBlocks'] 1591 1591 ); 1592 1592 $blocks[ $i ]['innerContent'] = $inner_content; 1593 $inner_content = $prev_inner_content;1593 $inner_content = $prev_inner_content; 1594 1594 } 1595 1595 ++$i;
Note: See TracChangeset
for help on using the changeset viewer.