Support

Account

Home Forums Front-end Issues acf_form for single field in group Reply To: acf_form for single field in group

  • This solves my question.

    <?php
    acf_form(array(
        'post_id'   => $post_id,
        'post_title'    => false,
        'field_groups' => array(21),
        'fields' => array('rating1','rating2'),
        'submit_value'  => 'Submit changes'
    ));
    ?>