Viewing 1 replies (of 1 total)
  • Thread Starter Angie Meeker

    (@ameeker)

    This is what worked for me:

    echo '<h5>Tagged Features</h5><ul class="tagged-features">';
    				$terms = apply_filters( 'taxonomy-images-get-the-terms', '', array(
    				'taxonomy' => 'features',
    				'image_size'   => 'detail',
    			) );
    				foreach( (array) $terms as $term) {
    				echo '<li>' . wp_get_attachment_image( $term->image_id, 'detail'). '<span class="termname">' . $term->name . '</span></li>';
    				}
    				echo '</ul><!-- .tagged-features -->';
Viewing 1 replies (of 1 total)
  • The topic ‘Display taxonomy images with term’ is closed to new replies.