Obtenir un champs ACF depuis un terme de taxonomie.

PHP
                    <?php
// récupération d'un champs depuis un terme de taxonomie
$pid = 'category_123'; // {taxonomy}_{term_id}
$pid = get_queried_object(); // objet WP_Term
$field = get_field('field_key', $pid);

// Résultats identiques
echo $field;
the_field('field_key', $pid); // ne nécessite pas d'echo