page-nav无法显示分页的问题
再用 pagenav进行分页时 在首页的文章列表中可以正常工作 但是在显示<ul><li></li></ul>的文章列表时 无论点第几页显示的都是第一页的文章 那位高手帮忙看一下,代码如下
<?php get_header(); ?>
<div id="content-box">
<div id="contentarea">
<?php if (have_posts()) : ?>
<?php query_posts('cat=3&showposts=10'); ?>
<div class="post"><div class="content">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
</div></div>
<ul>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<li><?php if (function_exists('get_cat_icon')) get_cat_icon('fit_width=20&fit_height=20'); ?><a href="<?php the_permalink() ?>" rel="bookmark" title="ermanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<?php endwhile; ?>
</ul>
<div class="navigation"><?php if(function_exists('wp_pagenavi')){ wp_pagenavi(); } else { ?>
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
<?php } ?>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>