This is how it currently reads in the “Single Post” file:
<div class=”entry single”>
<h2>“><?php the_title(); ?></h2>
<p class=”info”>
<?php if ($post->comment_status == “open”) ?>
<em class=”date”><?php the_time(‘F jS, Y’) ?><!– at <?php the_time(‘h:ia’) ?>–>
<!–<em class=”author”><?php the_author(); ?>–>
<?php edit_post_link(‘Edit’,'<span class=”editlink”>’,'</span>’); ?>
</p>
<?php the_content();?>
<p id=”filedunder”>Entry Filed under: <?php the_category(‘,’); ?></p>
</div>
——–
So the tag is in there I guess (it was there originally, I did not add anything in). But it’s not showing. What else do I have to do?
Thanks.