<?php
$fields = [
'my_button' => [
'url' => 'https://www.google.com',
'title' => 'This is a button',
'target' => '_blank',
],
'my_link' => [
'url' => 'https://www.google.com',
'title' => 'This is a link',
'target' => '_blank',
],
];
?>
<div class="tb-buttons-part">
<?= tb_render_button( $fields['my_button'] ) ?>
</div>
<div class="tb-buttons-part">
<?= tb_render_button( $fields['my_button'] ) ?>
<?= tb_render_link( $fields['my_link'], 'tb-buttonlink' ) ?>
</div>