My loop? Where’s the loop? My page has the following:
<?php get_header(); ?>
<!-- content ................................. -->
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php edit_post_link('edit','',''); ?>
<?php endwhile; ?>
<?php endif; ?>
</div> <!-- /content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>