Oh, and this is the category-review.php I’m using:
<?php
/**
* The template for displaying Reviews Category Archive pages.
*
*
* @package DotsAndDashes
*
*/
get_header(); ?>
<div id="container">
<div id="content" role="main">
<h1 class="page-title">Reviews</h1>
<?php
$category_description = category_description();
if ( ! empty( $category_description ) )
echo '<div class="archive-meta">' . $category_description . '</div>';
?>
<?php if ( ! have_posts() ) : ?>
<div id="post-0" class="post error404 not-found">
<h1 class="entry-title"><?php _e( 'Not Found', 'dotsanddashes' ); ?></h1>
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'dotsanddashes' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
<?php endif; ?>
<?php
$counter = 0;
while ( have_posts() ) : the_post(); ?>
<?php
$counter++;
if ($counter%2 == 0 ) { $post_class = 'fr'; }
else { $post_class = 'fl'; }
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(array('review-item',$post_class )); ?>>
<div class="thumb-wrapper">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><img src="<?php bloginfo( 'template_url' ); ?>/thumb.php?src=<?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID)); ?>&h=350&w=350" alt="<?php echo the_title(); ?>"/></a>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'dotsanddashes' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php echo get_post_meta($post->ID, 'Artist', true); ?><br><?php echo get_post_meta($post->ID, 'Album', true); ?></a></h2>
</div>
</div><!-- #post-## -->
<?php comments_template( '', true ); ?>
<?php endwhile; // End the loop. Whew. ?>
<?php /* Display navigation to next/previous pages when applicable */ ?>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav"></span> <span class="pagi-bracket">[</span>Older<span class="pagi-bracket">]</span>', 'dotsanddashes' ) ); ?></div>
<div class="nav-next"><?php previous_posts_link( __( '<span class="pagi-bracket">[</span>Newer<span class="pagi-bracket">]</span> <span class="meta-nav"></span>', 'dotsanddashes' ) ); ?></div>
</div><!-- #nav-below -->
<?php endif; ?>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>