Support

Account

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' => '',
    );