Here is my site: http://fighttrends.com/2009/07/favorite-62-gear-t-shirt/
I moved the 4 lines below from below the picture to above it and now my tags do not apear on teh "Posted In:" line.
Favorite 62 Gear T-Shirt
Posted On: July 2, 2009
Posted In:
Comments: One Response
I changed the code from:
<?php get_header(); ?>
<div id="contentwrap">
<div id="maincontent">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php if ( get_post_meta($post->ID, "_p75_thumbnail", true) ): ?>
<div class="post_image">
<a class="original" href="<?php echo p75GetOriginalImage($post->ID); ?>" title="Instant View"><img src="<?php echo p75GetThumbnail($post->ID, 620, 400); ?>" alt="<?php the_title(); ?>" /></a>
</div>
<?php endif; ?>
<div class="postcontent">
<h2><?php the_title(); ?></h2>
<div class="postdets">
Posted On: <?php the_time('F j, Y'); ?><br />
Posted In: <?php the_tags(' '); ?><br />
Comments: <a href="<?php the_permalink() ?>#comments"><?php comments_number('No Responses','One Response','% Responses'); ?></a>
</div>
<?php the_content(''); ?>
</div>
<div id="comments">
<?php comments_template(); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class='center'>No posts found</h2>
<?php endif; ?>
</div> <!-- maincontent -->
<?php get_sidebar(); ?>
</div> <!-- contentwrap -->
<?php get_footer(); ?>
To
<?php get_header(); ?>
<div id="contentwrap">
<div id="maincontent">
<div class="postcontent">
<h2><?php the_title(); ?></h2>
<div class="postdets">
Posted On: <?php the_time('F j, Y'); ?><br />
Posted In: <?php the_tags(' '); ?><br />
Comments: <a href="<?php the_permalink() ?>#comments"><?php comments_number('No Responses','One Response','% Responses'); ?></a>
</div>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php if ( get_post_meta($post->ID, "_p75_thumbnail", true) ): ?>
<div class="post_image">
<a class="original" href="<?php echo p75GetOriginalImage($post->ID); ?>" title="Instant View"><img src="<?php echo p75GetThumbnail($post->ID, 620, 400); ?>" alt="<?php the_title(); ?>" /></a>
</div>
<?php endif; ?>
<?php the_content(''); ?>
</div>
<div id="comments">
<?php comments_template(); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class='center'>No posts found</h2>
<?php endif; ?>
</div> <!-- maincontent -->
<?php get_sidebar(); ?>
</div> <!-- contentwrap -->
<?php get_footer(); ?>
I am very new to this so any help is REALLY appreciated!
Thanks all!