I have created a group of fields in the side of my CPT and wondering if I can make them sortable without using clone function?
$meta_boxes[] = array(
'id' => 'role',
'title' => 'Team Member Info',
'pages' => array('team'),
'context' => 'side',
'priority' => 'high',
'fields' => array(
array(
'name' => 'Position',
'desc' => 'Add the role/position of the team member',
'id' => $prefix . 'position',
'type' => 'text',
),
array(
'name' => 'Phone',
'desc' => 'Add the phone number of the team member',
'id' => $prefix . 'phone',
'type' => 'text',
),
array(
'name' => 'Email',
'desc' => 'Add the email adress of the team member',
'id' => $prefix . 'email',
'type' => 'email',
),
)
);