Modifier la valeur d’un champs ACF avant qu’il ne soit sauvegardé.

PHP
                    <?php
function undfnd_update_value( $value, $post_id, $field, $original ) {
    // Votre code
    return $value;
}

// Pour tous les champs
// add_filter('acf/update_value', 'undfnd_update_value', 10, 3);

// Pour tous les champs en filtrant par type
add_filter('acf/update_value/type={$type}', 'undfnd_update_value', 10, 3);

// Pour tous les champs en filtrant par le slug du champs
// add_filter('acf/update_value/name={$name}', 'undfnd_update_value', 10, 3);

// Pour tous les champs en filtrant par l'identifiant du champs
// add_filter('acf/update_value/key=field_123456', 'undfnd_update_value', 10, 3);