Hi thanks for the response, I have tried the following:
<?php query_posts( 'post_type=bedrooms&orderby=name&order=ASC' ); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="panel">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(212, 212)); ?></a>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="swatches">
<ul>
<?php
print apply_filters( 'taxonomy-images-list-the-terms', '', array(
'after' => '</li>',
'after_image' => '</span>',
'before' => '<li>',
'before_image' => '<span>',
'image_size' => 'detail',
'post_id' => 1234,
'taxonomy' => 'colours',
) );
?>
</ul>
</div>
</div>
<?php endwhile; wp_reset_query(); ?>
And it doesn’t appear to work, is there something obvious that I’m missing?
Thanks
Gary