Home › Forums › ACF PRO › Options page in front-end › Reply To: Options page in front-end
This can be done using acf_form() http://www.advancedcustomfields.com/resources/acf_form/
Create the options page and the field groups you want on it and then for the front end form use options
as the post_id
value and list the field groups that you want to show.
$args = array(
'post_id' => 'options',
'field_groups' => array(3199) // this is the ID of the field group
);
acf_form($args);
Follow the rest of the instructions for using acf_form()
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.