Support

Account

Home Forums Add-ons Options Page Save global options from front end form

Helping

Save global options from front end form

  • Is it possible to create an ACF form on the front end that will save global options?

  • Hi @harnessmedia

    Yes, that’s possible. You can do it by providing the post_id and field_groups option like this:

    <?php acf_form(array(
        'post_id' => 'option',
        'field_groups' => array(99),
    )); ?>

    Where “99” is the ID of your field group.

    I hope this helps 🙂

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Save global options from front end form’ is closed to new replies.