Home › Forums › Bug Reports › acf_form() id not being set from $args › Reply To: acf_form() id not being set from $args
ahah, went digging through the ACF code. I don’t know what ‘id’ is for, I didn’t even figure out where that ‘id’ value is used. ie. It may not be used at all, I didn’t dig that far.
$args = array(
'id' => 'my-form-id'
);
acf_form($args);
But I did figure out how to set the form ID
$args = array(
'form_attributes' => array('id' => 'my-form-id')
);
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.