Hey, guys!
Question:
On previous versions of MetaBox I was able to use HTML code to improve the description of labels in RADIOs and CHECKBOXES, like this:
array(
'id' => 'genre',
'type' => 'radio',
'options' => array(
'a' => 'Option A, more info <a href="#">clicking here</a>', // Here the HTML does not work anymore
'b' => 'Option B, more info <a href="#">clicking here</a>', // Here the HTML does not work anymore
'c' => 'Option C, more info <a href="#">clicking here</a>', // Here the HTML does not work anymore
'std' => 'a',
'desc' => '<br />Learn more <a href="#">clicking here</a>', // Here the HTML works
)
),
The HTML is not interpreted ONLY in the radio options. If I use it in the "desc" field, it is working fine.
Thank you!