posts are appearing in the sidebar!

My website: http://zombirdy.com
Screenshot: http://i.imgur.com/a8nQg.png

As you can see, whenever I have more than 1 post on the blog page, it is sending the older post into the sidebar. I have been over & over all the coding & cannot locate the problem!! I do know there are other issues in my coding, but I am looking specifically for what is causing the posts to move to the sidebar at this time.

I also deactivated all the plugins 1 by 1 & none of them affected the outcome either. I am (obv.) using a custom WP theme, not sure if that is relevant to posting or not. PLEASE someone help me figure out how to make my posts stay where they belong!! I have posted this at WP forums & gotten nothing but snarky & useless replies. =(

:-\ My main index PHP:
[php]<?php
/**

  • @package WordPress
  • @subpackage Default_Theme
    */

get_header(); ?>

bloginformationtabs/to-dofeedbackmembershipsresourcestradesmailing list
<?php if (have_posts()) : ?>

	<?php while (have_posts()) : the_post(); ?>

		<div <?php post_class() ?> id="post-<?php the_ID(); ?>">

<?php the_title(); ?>

<?php the_time('F jS, Y') ?>
<?php if($post->post_excerpt) { ?>
<?php the_excerpt(); ?>
<?php } ?> <?php the_content(); ?> <?php the_category(', ') ?>
<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> <?php comments_template(); // Get wp-comments.php template ?>


		</div>
<?php endwhile; ?>
	<div class="navigation">

<?php next_posts_link('« Older Entries') ?>

<?php previous_posts_link('Newer Entries »') ?>

<?php else : ?>

	<h2 class="center">Not Found</h2>
	<p class="center">Sorry, but you are looking for something that isn't here.</p>


<?php endif; ?>

</div>
<?php get_sidebar(); ?> <?php get_footer(); ?>[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service