# b-blocks/2.1.2/build/data-table/render.php

bBlocks – Essential Gutenberg Blocks &amp; Patterns Collection, version 2.1.2. 12 lines.

- Page: https://pluginprobe.com/plugins/b-blocks/2.1.2/code/build/data-table/render.php
- Raw: https://pluginprobe.com/plugins/b-blocks/2.1.2/raw/build/data-table/render.php
- Modified: 2026-08-24T10:46:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/b-blocks/2.1.2/code/build/data-table/render.php#L10-L20`.

```php
<?php
$id = wp_unique_id( 'bBlocksTable-' );
?>

<div <?php echo get_block_wrapper_attributes(); ?> id='<?php echo esc_attr( $id ); ?>' data-attributes='<?php echo esc_attr( wp_json_encode( $attributes ) ); ?>'>

<div class="b-blocks-table-innerBlocks-contents">
	<table class='b-blocks-table-main-container'>
		<?php echo $content; ?>
	</table>
</div>
</div>
```
