single.php

<?php get_header(); ?>

<div class=”entry”>

<?php if (have_posts()) :  while (have_posts()) : the_post(); ?>
<div class=”post”>

    <!–post title–>
<h3 class=”heading”><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h3>

    <!–post content–>
<div class=”post”><?php the_content(‘<br /><br />Continue Reading &raquo;’); ?></div>

    <!–post meta–>
<div class=”postmeta”><?php comments_popup_link(‘Comment?’, ‘1 Comment’, ‘% Comments’ ) ?>Posted in <?php the_category(‘, ‘) ?></div>
</div>
<hr />
<!–end posts–>

 <?php endwhile; ?>
 <?php else : ?>
 <!– no posts –>

 <h2>Sorry, no posts were found</h2>
 <?php endif; ?>

    <!–post comments–>
<?php comments_template(); ?><br/>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

发表评论