ACF Form

’new_post’, // Unique identifier for the form
’post_title’ => true,
’new_post’=>array(
’post_type’ => ’signature’,
’post_status’ => ’publish’
),
// PUT IN YOUR OWN FIELD GROUP ID(s)
’field_groups’ => array(60), // Create post field group ID(s)
’form’ => true,
’return’ => ’?updated=true’, // Redirect to new post url
’html_before_fields’ => ’’,
’html_after_fields’ => ’’,
’submit_value’ => ’Add Signature’,
’label_placement’=>’top’,
’instruction_placement’=>’field’,
’field_el’=>’div’,
’honeypot’=>true,
’updated_message’ => __(“Thank you for signing The David Declaration. Please consider this as confirmation that your details have been successfully submitted.”, ’acf’),
’html_submit_button’ => ’’,
’html_submit_spinner’ => ’’,
’kses’ =>true
);

acf_form($settings); ?>