return array(
'title' => 'At a glance',
'options' => array(
array(
'text' => 'Visit Site',
'icon' => 'eye',
'link' => $site->url(),
'target' => '_blank'
)
),
'html' => function() { ... }
According to the docs you can define a target
for the anchor in a widgets title
.
I’ve set it to _blank
(see my code above) but the link still opens in the same window.
Am I doing something wrong?