Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter garydavison

    (@garydavison)

    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

    Thread Starter garydavison

    (@garydavison)

    @thejas thanks for the response but unfortunately that doesn’t really help me.

Viewing 2 replies - 1 through 2 (of 2 total)