Support

Account

Home Forums Front-end Issues Schedule Post with Frontend Form? Reply To: Schedule Post with Frontend Form?

  • @infominemindmedia-com you need to match the “$post_id” in both the form and the function. It also must be something other than “new_post” because this is the default that ACF uses and runs its own filter.

    So your form args should be

    
    <?php acf_form(array(
            'post_id'       => 'new_emails',
            'id' => 'new-email',
            'new_post'      => array(
                'post_type'     => 'emails',
                'post_status'   => 'future',
                'field_groups' => array(1091),
                'post_title'    => true
            ),
            'return' => '',
            'submit_value'  => 'Add new email'
        )); ?>