Home › Forums › Front-end Issues › front end form? › Reply To: front end form?
Either you can create using export to php code and use that code into page in your theme.
or just create custom field groups in the back-end itself.
You can get idea from here http://www.advancedcustomfields.com/resources/create-a-front-end-form/, and also read more about acf_form($args).
Take a custom field id and pass it to acf_form() function.
Here is an example
$args = array('post_id' => 'new_listing',
'field_groups' => array('custom field group id'),
'submit_value' => __('Submit','your theme name'));
acf_form( $args );
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.