<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h1><?php the_title(); ?></h1>
<div class=”descr”><?php the_time(‘F jS, Y’) ?> by <?php the_author() ?></div>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 align=”center”>Not Found</h2>
<p align=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<div class=”clearer”> </div>
</div>
<?php get_footer(); ?>
Thank you, but where is the loop, where should I insert the code?