I was clicking around my site, and noticed that my archive page is not updating (looks like around November 15th they stopped), and some of my pages are not updating either.
For instance -
http://www.behindthehype.com/about-the-hype/ - this is showing an older version of the sidebar elements than what exists on the homepage...and when I'm on that page, it is also showing more entries under the "contributors" drop-down menu than actually exist now.
Then when I go to one of the category archive pages, the sidebar is also old, and it is not showing newer posts in that category, like here
http://www.behindthehype.com/category/music-reviews/
The only thing I can think of is that maybe around that time was when I removed the time/date in the top left corner of the template, and certain pages make a call to that to update...? I'm really not sure, especially since the "recent posts" sidebar widget is updating properly on the homepage.
As reference, here is my archive.php page:
Code:
<?php get_header(); ?>
<div id="content">
<div id="contentleft">
<div class="postarea">
<?php include(TEMPLATEPATH."/breadcrumb.php");?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 ><span style="font-weight: bold;"><?php the_title(); ?></span></h1>
<div class="date">
<div class="dateleft">
<span class="time"><?php the_time('F j, Y'); ?></span> by <?php the_author_posts_link(); ?> <?php edit_post_link('(Edit)', '', ''); ?>
Filed under <?php the_category(', ') ?></p>
</div>
<div class="dateright">
<span class="comment"><?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></span></p>
</div>
</div>
<?php the_content_limit(600, "[Read more of this review]"); ?><div style="clear:both;"></div>
<div class="postmeta2">
<span class="tags">Tags: <?php the_tags('') ?></span></p>
</div>
<?php endwhile; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?></p>
</div>
</div>
<?php include(TEMPLATEPATH."/sidebar.php");?>
</div>
<?php get_footer(); ?>
Please help :)