I have the meta in the attachment post but cannot get the value in the front end?
Code:
$prefix = 'sw_';
// media meta box
$meta_boxes[] = array(
'id' => 'href',
'title' => 'Link for Horizontal Gallery',
'pages' => array('attachment'),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'name' => 'URL',
'id' => $prefix . 'link',
'type' => 'url',
),
)
);
But $links = rwmb_meta( 'sw_link', 'type=url' );
doesnt return any value when I do a var_dump?
That is why I was trying to find that tutorial I thought I had seen before