Support

Account

Home Forums General Issues acf_form how to create two forms Reply To: acf_form how to create two forms

  • Awesome thanks heaps Elliot.

    Managed to get it happening code below for anyone else:

    In my template file

    <?php 
      $args = array(
       'post_id' => 'new',
       'field_groups' => array(56,127),
       'html_before_fields' => '<input type="hidden" name="the_post_type" value="this is where you pop the post type or just post"/>'
    );
    
    acf_form( $args ); 
     
    ?> 

    and in the functions.php

    function my_pre_save_post( $post_id )
    {
        // check if this is to be a new post
        if( $post_id != 'new' )
        {
            return $post_id;
        }
     
        // Create a new post
        $post = array(
            'post_status'  => 'publish' ,
            'post_title'  => $_POST["fields"]['field_529c0886500bd'],
            'post_type'  => $_POST['the_post_type']
        );  
     
         $post_id = wp_insert_post( $post ); // Insert the post
        do_action( 'acf/save_post' , $post_id ); // Save the fields to the post
        wp_redirect( add_query_arg( 'updated', 'true', get_permalink( $post_id ) ) ); exit; // Redirect to the new post
        return $post_id;
        
       
    }