| 1 |
<?php |
| 2 |
$id = wp_unique_id( 'bBlocksAdvancedTabs-' ); |
| 3 |
?> |
| 4 |
<div <?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- get_block_wrapper_attributes() is properly escaped ?> |
| 5 |
<?php echo get_block_wrapper_attributes(); ?> id='<?php echo esc_attr( $id ); ?>' data-attributes='<?php echo esc_attr( wp_json_encode( $attributes ) ); ?>'> |
| 6 |
|
| 7 |
<div class="b-blocks-advanced-tabs-innerBlocks-contents"> |
| 8 |
<?php echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- InnerBlocks pre-rendered content, escaped by core block pipeline. ?> |
| 9 |
</div> |
| 10 |
|
| 11 |
</div> |