Here is my code from my main index template:
I found the line I was supposed to put the text above, but when I pasted it in, I got nothing. I’m assuming I’m doing something wrong here, but not sure what. I’m sorry, I knew I shouldn’t have put those blonde streaks back in my hair last month. Thankfully it’s almost time to get a different color again. ??
<?php get_header(); ?>
<div id=”content”>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<div id=”contentmiddle”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”contentdate”>
<h3><?php the_time(‘M’); ?></h3>
<h4><?php the_time(‘j’); ?></h4>
</div>
<div class=”contenttitle”>
<h1>” rel=”bookmark”><?php the_title(); ?></h1>
<p><?php the_time(‘F j, Y’); ?> | <?php comments_popup_link(‘Leave a Comment’, ‘1 Comment’, ‘% Comments’); ?></p>
</div>
<?php the_content(__(‘Read more’));?>
<!–
<?php trackback_rdf(); ?>
–>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>
<h1>Comments</h1>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
</div>
<!– The main column ends –>
<?php get_footer(); ?>