Here is the entire context of the section:
<!–loop article begin–>
<?php while (have_posts()) : the_post(); ?>
<!–post title as a link–>
<h3 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<!–Post Meta–>
<div class=”post-meta-top”>
<div class=”auth”><span>Posted by <?php the_author_posts_link(); ?></span></div>
<div class=”date”><span><?php the_time(‘F j, Y’); ?></span></div>
<div class=”clearboth”></div>
</div>
<!–optional excerpt or automatic excerpt of the post–>
<?php the_excerpt(); ?>
<!–Post Meta–>
<div class=”post-meta-bottom”>
<!–<?php if (function_exists(‘the_tags’)) { ?>Tags: <?php the_tags(”, ‘, ‘, ”); ?>
<?php } ?>–>
<div class=”cat”><span class=”cats”><?php the_category(‘, ‘) ?></span><span class=”tags”><?php the_tags(”, ‘, ‘, ”); ?></span></div>
<div class=”comm”><span><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></span></div>
<div class=”clearboth”></div>
</div>
<!–one post end–>
<?php endwhile; ?>
I just want the full post to show up when going through category pages instead of the excerpt I’m currently getting.
Thanks