Support

Account

Home Forums ACF PRO Relationship : CPT taxonomy and regular post Reply To: Relationship : CPT taxonomy and regular post

  • Ok, it works with :

    <?php $terms = get_the_terms( $auteur->ID, 'auteur' ); 
    foreach($terms as $term) {
    $term_link = get_term_link( $term );
    echo '<a href="' . esc_url( $term_link ) . '">' . $term->name . '</a>';
    } ?>

    Thank you John