'settings', 'slug'=>'general')); $settings = array(); // Section One // ------------------------// $settings['Section One'] = array('info' => 'Section one information.'); $fields = array(); $fields[] = array( 'type' => 'text', 'name' => 'my_textfield', 'label' => 'My Text Field' ); $fields[] = array( 'type' => 'color', 'name' => 'my_colorfield', 'label' => 'My Color Field' ); $fields[] = array( 'type' => 'textarea', 'name' => 'my_textarea', 'label' => 'My Textarea' ); $fields[] = array( 'type' => 'checkbox', 'name' => 'my_checkbox', 'label' => 'My Checkbox' ); $fields[] = array( 'type' => 'upload', 'name' => 'my_upload', 'label' => 'My Upload' ); $settings['Section One']['fields'] = $fields; new SectionFactory( $page, $settings );