Home › Forums › General Issues › Acf form does not make posts in cpt › Reply To: Acf form does not make posts in cpt
Hello,
thank you for your reply.
Hm i have added it before (forgot to have it on the code i gave to the topic) but nothing happened. I tested again with the code below but nothing works.
<?php
acf_form_head();
get_header();
?>
<div class="container">
<?php
$settings = array(
'id' => 'photos_form',
'post_id' => 'new_post',
'new_post' => ['post_type' => 'photos', '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' => '',
);
acf_form($settings);?>
</div>
<?php get_footer(); ?>
Is there any mistake in that code? Didn’t understand something in the correct way?
Thank you again.
George
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.