Home › Forums › General Issues › change taxonomy terms on post update not on post creation › Reply To: change taxonomy terms on post update not on post creation
If you want to change things when a post is updated based on a value changing then you need to have you filter run before ACF updates the DB with the new values by setting the priority to something less than 10
add_action('acf/save_post', 'change_produktion_content', 1);
Then you can compare the value in $_POST[‘acf’] with the value in the DB.
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.