Hi, this is my first post.
I can not resolve my problem with taxonomy page.
I'd like to hove just 5 post per page, this is my code
<div id="content">
<?php if (have_posts()) : ?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<div class="carbox clearfix" id="post-<?php the_ID(); ?>">
<em>do something</em>
</div>
<?php endwhile; ?>
<?php getpagenavi(); ?>
<?php else : ?>
<h1 class="title">Not Found</h1>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
Does anyone have a solution?
Thanks