Support

Account

Home Forums Front-end Issues Front End Form Reply To: Front End Form

  • All right!!! Got it, I’m using acf_form array(),
    in post_id => get_the_ID(). In case someone needs something like this:

     acf_form(array(
             'post_id' => get_the_ID(),
             'field_groups' => array(xxx,xxx), // Used ID of the field groups here.
             'post_title' => false, // This will show the title filed
             'post_content' => false, // This will show the content field
             'author' => $current_user->ID,
             'form' => true,
                 
            'submit_value'  => 'Update the post!'
         ));

    Thank you!!