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(); ?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.