Archive for June, 2010

WordPress question

Off topic, but I’m working on a WordPress site, and my category page is only showing the first post in the category, even though there are ten posts. Not sure what I’m missing:

<*php $postnumber = ‘1’ ?>

<*php while (have_posts()) : the_post(); ?>
<div post” . $postnumber; $postnumber++; ?>” id=”post-<*php the_ID(); ?>”>
<*php include(TEMPLATEPATH . ‘/templates/titleBlock.php’); ?>

<*php the_tags( ‘<p><span>Tags:</span> ‘, ‘, ‘, ‘</p>’); ?>
<*php wp_link_pages(array(‘before’ => ‘<p><strong>Pages:</strong> ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>

</div>
<*php endwhile; ?>

=============================

Edit: Ok, I don’t think this is the offending code. I copied an archive.php from a working site that shows all the relevant posts, and my new site is still only showing one post per category. This is a problem. What other file could be affecting this?

=============================\

Edit: Well crap, it’s the Menu Manager plugin that’s causing it. WTF?! Grrrrrrrr!

=============================

Edit: Nope, not the Menu Manager either. *thunk* *thunk*

More details here: http://wordpress.org/support/topic/408522?replies=9#post-1546227

Comments off