They all have 'columns': 6
/***************************
* create contact metaboxes
***************************/
function p52_contact_before_meta_boxes( $meta_boxes ) {
$prefix = 'p52_contact_';
// contact info meta box
$meta_boxes[] = array(
'id' => $prefix . 'contact',
'title' => 'Contact Info',
'pages' => array('p52-contact'),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'name' => 'Company',
'id' => $prefix . 'company',
'type' => 'text',
'columns' => 6
),
array(
'name' => 'Relationship',
'id' => $prefix . 'relationship',
'type' => 'select',
'options' => array(
'prospect' => 'Prospect',
'lead' => 'Lead',
'client' => 'Client',
'agency' => 'Agency',
'contractor' => 'Contractor',
'assitant' => 'Assistant',
'supplier' => 'Supplier'
),
'placeholder' => 'Choose your relationship',
'columns' => 6
),
array(
'name' => 'Phone',
'id' => $prefix . 'phone',
'type' => 'text',
'columns' => 6
),
array(
'name' => 'Email',
'id' => $prefix . 'email',
'type' => 'text',
'columns' => 6
),
array(
'name' => 'Address',
'id' => $prefix . 'address',
'type' => 'textarea',
'columns' => 6
),
array(
'name' => 'Postal Address',
'id' => $prefix . 'postal',
'type' => 'textarea',
'columns' => 6
),
)
);