| 1 |
<?php |
| 2 |
/** |
| 3 |
* Server-side rendering of the `wtblocks/chart` block. |
| 4 |
* |
| 5 |
* $attributes (array): The block attributes. |
| 6 |
* $content (string): The block default content. |
| 7 |
* $block (WP_Block): The block instance. |
| 8 |
*/ |
| 9 |
|
| 10 |
$chart_id = $attributes['chartId'] ?? null; |
| 11 |
|
| 12 |
if ( ! empty( $chart_id ) ) : |
| 13 |
echo '[chart id="' . $chart_id . '"]'; |
| 14 |
endif; |
| 15 |
|