Home › Forums › General Issues › Acf form does not make posts in cpt › Reply To: Acf form does not make posts in cpt
You need to add the post_id and new_post param to the $settings array.
Plz replace ‘your-cpt’ with the name of your custom post type.
$settings = array(
'id' => 'photos_form',
'post_id' => 'new_post',
'new_post' => [
'post_type' => 'your-cpt',
'post_status' => 'draft',
],
'field_groups' => array("group_6025117548b3f"),
'fields' => false,
'submit_value' => __("Submit", 'acf'),
'label_placement' => 'top',
'html_submit_button' => '<input type="submit" id="submitbtn" class="acf-button button primary_btn" value="%s" />',
'html_submit_spinner' => '<span class="acf-spinner"></span>',
'updated_message' => '',
'html_after_fields' => '',
);
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.