Jeremy,
here is my code for index.php – when I insert the tagging code (< ?php the_tags(‘Tags: ‘,’, ‘); ?>), the code shows up on the web page exactly as seen here. Any suggestions on how to change it to get it to work?
<?php get_header(); ?>
<div id=”content”>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<div id=”contentleft”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1>” rel=”bookmark”><?php the_title(); ?></h1>
<?php the_content(__(‘Read more’));?><div style=”clear:both;”></div>
<div class=”postmeta”>
<p><?php the_time(‘F j, Y’); ?> | Filed Under <?php the_category(‘, ‘) ?> <?php edit_post_link(‘(Edit)’, ”, ”); ?></p>
< ?php the_tags(‘Tags: ‘,’, ‘); ?>
</div>
<!–
<?php trackback_rdf(); ?>
–>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>
<p><?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?></p>
<h4>Comments</h4>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
</div>
<!– The main column ends –>
<?php get_footer(); ?>