Support

Account

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.