
If you want to put your field where you want then you can do it like this:
<?php echo $fields['link']['html']; ?>

Or you can use it like this without html and set your own design:
<?php echo $item['link']; ?>

<?php echo $fields['link']['html']; ?>
<?php echo $item['link']; ?>
return '<a rel="noopener'.$nofollow.'" target="_blank" '.$class.' href="'.htmlspecialchars($href).'">'.htmlspecialchars($value).'</a>';
return '<a rel="noopener'.$nofollow.'" target="_blank" '.$class.' href="'.htmlspecialchars($href).'">'.htmlspecialchars("Go to this link or whatever you want to put in here").'</a>';