//Panelists
$meta_boxes[] = array(
'title' => 'Panelists',
'context' => 'normal',
'priority' => 'high',
'post_types' => 'events',
'desc' => '(drag to reorder)',
'fields' => array(
array(
'id' => 'radix_panelists',
'type' => 'group',
'clone' => true,
'sort_clone' => true,
'fields' => array(
array(
'name' => 'Position',
'id' => $prefix . 'panelistposition',
'type' => 'text',
'desc' => 'Position on panel: e.g. Panelist, or Chair',
),
array(
'name' => 'Name',
'id' => $prefix . 'panelistname',
'type' => 'text',
'desc' => 'Name of panelist',
),
array(
'name' => 'Title',
'id' => $prefix . 'panelisttitle',
'type' => 'text',
'desc' => 'Title of panelist',
),
array(
'name' => 'URL',
'id' => $prefix . 'panelisturl',
'type' => 'text',
'desc' => 'Link or mailto: for panelist',
),
array(
'name' => 'Profile Pic',
'id' => $prefix . 'panelistpic',
'type' => 'file_input',
'desc' => 'Profile picture of panelist',
),
),
),
),
);