Home › Forums › Backend Issues (wp-admin) › how to detect if post is new or edited with pre_save_post()? › Reply To: how to detect if post is new or edited with pre_save_post()?
First you have your ACF form in the template, actually, now that I completely understand what you’re trying to do, you don’t need your own function.
See the “Create a new post” section of this page https://www.advancedcustomfields.com/resources/acf_form/
In you acf_form you supply the “post_id” of “new_post” and you set the “new_post” option to tell ACF to create a new post of the type you want.
Now you can forget about the pre_save_post filter and creating a new post yourself for the front end form.
Now, in your acf/save_post filter check for your post type. I don’t know what you’re post type is here. This function should deal with both the front end and admin saving of a post.
acf_save_post_type_filter($post_id) {
if (!is_numeric($post_id) || get_post_type($post_id) != 'your-post-type') {
return;
}
// do your .zip file upload stuff here
}
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.