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;
}
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.