Hey imfsub12,
Not sure without seeing some code. But. I’ve had things like this go wrong by messing with the sidebar.php page. What I didn’t realize what that the WP loop is initiated in the header.php file, and doesn’t finish until the fat lady sings…ok. not really. but. It ends somewhere else, usually encompassing the sidebar.php include.
Sounds though like you’re not messing with your php files…
My guess is that you have some tag in a post that’s breaking the loop; so when it gets to sidebar.php, its kaput.
Try doing some simple tests with your sidebar.php:
– Query posts in your sidebar with:
<?php query_posts(‘category_name=your-category&showposts=10’); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(‘read more’); ?>
<?php endwhile;?>
replace “your-category” with the name of one of your categories.
Also try a simple echo in the sidebar to see where you’re at:
<?php echo wp_title(”, true); ?>
This will display your page title.
IF this doesn’t work, then the sidebar isn’t being processed.
best, seej