one child group section

Support MB Group one child group section

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #4561
    navidsafavinavidsafavi
    Participant

    i want create a one group with many field without clone row.want one row.
    for example car specific certain 10 field. this group field and save a one row in database.
    please help me

    #4591
    Anh TranAnh Tran
    Keymaster

    Please follow the instruction in the documentation. Here is a sample code:

    $meta_boxes[] = array(
        'title' => 'Car Information',
        'fields' => array(
            // Group
            array(
                'name' => 'Car Details',
                'id' => 'car_details',
                'type' => 'group',
                'fields' => array(
                    array(
                        'name' => 'Model',
                        'id' => 'model',
                        'type' => 'text',
                    ),
                    // Other sub-fields here
                ),
            ),
        ),
    );
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘one child group section’ is closed to new replies.