Viewing 5 replies - 1 through 5 (of 5 total)
  • Do you just want the taxonomy images without any links?

    If so, this code (from this thread) worked for me.

    $categories =  get_categories(array( 'taxonomy' => 'series' ));
     foreach ($categories as $category) {
     	$tax_term_id = $category->term_taxonomy_id;
     	$images = get_option('taxonomy_image_plugin');
     	echo wp_get_attachment_image( $images[$tax_term_id], 'medium' );
     }
    Thread Starter harrymfa

    (@harrymfa)

    Thank you. Ideally I would like the images with links, and the title of each. I will try to work something out with this code.

    If you want the links, try this.

    <?php print apply_filters( 'taxonomy-images-list-the-terms', '', array(
    	'after'        => '</div>',
    	'after_image'  => '</span>',
    	'before'       => '<div class="your-class">',
    	'before_image' => '<span>',
    	'image_size'   => 'thumbnail',
    	'taxonomy'     => 'taxonomy-name',
    ) ); ?>
    Thread Starter harrymfa

    (@harrymfa)

    Thanks again. I tried this code but it didn’t return anything. I think I tried something similar to it earlier with the same result. The first code you provided me did return the images of each category but with not markup between them.

    tpecop

    (@tpecop)

    <?php
    $terms = apply_filters( ‘taxonomy-images-get-terms’, null, array(
    ‘taxonomy’ => ‘model’,
    ) );
    if ( ! empty( $terms ) ) {
    print ‘ ‘;
    foreach( (array) $terms as $term ) {
    print ‘ taxonomy ) ) . ‘”>’ . wp_get_attachment_image( $term->image_id, ‘detail’ ) . ‘‘ ;
    } print ‘ ‘;
    }
    ?>
    </div>

    this actually will show only images. also this code is in tutorial

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Taxonomy Images] I just want a taxonomy list with thumbnails’ is closed to new replies.