Home › Forums › Front-end Issues › Front-end Form: Redirect after Save › Reply To: Front-end Form: Redirect after Save
Hi StormTrooper,
this code works for me:
add_filter('acf/pre_save_post' , 'my_pre_save_post' );
function my_pre_save_post( $post_id ) {
global $post;
if($post->post_name == 'some-post') {
// Create a new post
$post = array(
'post_status' => 'publish' ,
'post_title' => 'some-title',
'post_type' => 'some-post-type',
);
// insert the post
$post_id = wp_insert_post($post);
// update custom field
update_post_meta($post_id, 'some-customfield', $post_id);
do_action('acf/save_post', $post_id);
//do_action('acf/save_post' , $post_id);
wp_redirect( '/some-page-to-redirect/', 301);
exit;
}
}
Check your site for Javascript errors if the function does not work… 🙂
Greetings
Christian
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.