Hi guys! I'm having an issue with my category.php page. Whenever you click a category link, such as "this post was filed under music", it takes you to the category.php where it's supposed to pull up all posts filed under that category. However it never works like that. No matter what category you click it always pulls up posts filed under one particular category and I can't figure out why!
Here's what I've got:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2 id="post-<?php the_ID(); ?>" ><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php content('30'); ?>
</div>
<?php endwhile; endif; ?>
Seems fine to me...Anyone have any idea why this wouldn't work?