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

  • The color coding in DW does help, sorry, it’s not always easy to see the errors in plain text. The error is an extra closing ) on this line 'field_groups' => array('members-field')

    
    <?php acf_form_head(); ?>
    <?php 
    /*
    Template Name: Application
    */
    get_header(); ?>
    
    <div id="primary">
    		<div id="content" role="main">
    
    			<?php 
        $args = array(
            'field_groups' => array('members-field'), // 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(); ?>