如何在主页上显示10个帖子并在下面显示分页?是否可以使用have_post()
?
<?php if (have_posts()):
$incr=1;
while (have_posts()) : the_post(); ?>
<div class="postindex <?php echo (($incr%2==0)?'even':'odd') ?>" id="post-<?php echo $incr ?>">
<div class="postIncr"><?php echo $incr ?></div><h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title() ?></a></h1>
<div class="clear-float"></div>
<?php strip_tags(the_excerpt(__('Readmore ?')));?>
</div>
<?php $incr++; endwhile;
endif ?>
这是我的编码,我已经安装了wp_paginate,所以如何在那里使用,我想在页面上显示6个帖子 提前致谢