Support

Account

Home Forums ACF PRO how to create front end form data add in post Reply To: how to create front end form data add in post

  • so the field group ID is wrong. The field group from the image has a slug of
    group_559b4ee3 not group_559b4ee335078

    
    <?php acf_form_head(); ?>
    <?php 
    /*
    Template Name: Application
    */
    get_header(); ?>
    
    <div id="primary">
      <div id="content" role="main">
        <?php 
        $args = array(
            'field_groups' => array('group_559b4ee3'), // Field Group name
            'post_id' => 'new_post',
            'new_post' => array(
                'post_type' => 'post',
                'post_status' => 'draft'
             ),
            'submit_value' => 'Submit Application'
        );
        acf_form(); 
    ?>
      </div>
      <!-- #content --> 
    </div>
    <!-- #primary -->
    
    <?php get_footer(); ?>