I’m sorry, but i’m completely lost on this one… My category template looks like this:
—
<?php
include_once(‘gravatar.php’);
get_header();
?>
<?php if ( is_category() ) : ?>
<h3 id=”category-name-header”>
<?php echo $cache_categories[$cat]->cat_name ?></h3>
<?php add_filter(‘category_description’, ‘wpautop’); ?>
<?php add_filter(‘category_description’, ‘wptexturize’); ?>
<div id=”category-description”>
<?php echo category_description(); ?>
</div>
<?php endif; ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<h5 class=”storytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark”><?php the_title(); ?></h5>
<div class=”storycontent”>
</div>
<!–
<?php trackback_rdf(); ?>
–>
</div>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?>
<?php get_footer(); ?>
—
Where should i make a change, and what should i change it to ?
Thanks for trying to help me out, i really appreciate it.