Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <div id="content">
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
- <h2>
- <?php the_title(); ?>
- </h2>
- <p class="meta">
- <?php the_time('F jS, Y') ?>
- - By
- <?php the_author() ?>
- -
- <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
- </p>
- <div class="entry">
- <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
- <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
- <p class="meta">
- <?php the_tags('Tags: ', ', ', ' '); ?>
- </p>
- </div>
- </div>
- <div class="clearfloat"> </div>
- <!-- Have tried it here -->
- <?php comments_template(); ?>
- <?php endwhile; else: ?>
- <p>Sorry, no posts matched your criteria.</p>
- <?php endif; ?>
- <!--And tried it here -->
- </div>
- <?php get_sidebar(); ?>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment