Support

Account

Home Forums Front-end Issues Display a field from a taxonomy on a single post Reply To: Display a field from a taxonomy on a single post

  • I have tried this code:

    $term_field = get_the_terms($post->ID, 'job_title'); 
    $intro = get_field('intro', $term_field);
    echo $intro

    But it does not work.