Support

Account

Home Forums General Issues Pulling Images of Tags using the_tags() Reply To: Pulling Images of Tags using the_tags()

  • The only way to get the image is to get the terms associated with the post and then get the image form the term.

    
    $terms = get_object_terms($post->ID, 'tags');
    foreach ($temrs as $term) {
      $image = get_field('image-field', $term);
    }