Container
Parameters
Example
echo ( new HivePress\Blocks\Container(
[
'tag' => 'section',
'optional' => true,
'attributes' => [
'class' => [ 'my-custom-class' ],
],
'blocks' => [
'my_custom_block' => [
'type' => 'content',
'content' => 'Hello World!',
'_order' => 123,
],
],
]
) )->render();Last updated