我正在使用wp查询在模板页面上显示最近的5篇帖子。 它工作正常,我还想添加上一个和下一个按钮导航到之前的5个帖子,依此类推。
我设置'showposts = 5',它显示了5个最新的帖子,这是完美的,但是当点击“上一个”时,它会将我重定向到/ page / 2 /,但显示了5个相同的帖子...
这是我的代码:
<?php
$temp = $wp_query; $wp_query= null;
$wp_query = new WP_Query(); $wp_query->query('showposts=5' . '&paged='.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<h2><a href="<?php the_permalink() ?>"><?php the_time('y-m-d'); ?> | <?php the_title(); ?></a></h2>
<?php endwhile; ?>
<?php if ($paged > 1) { ?>
<nav id="nav-posts">
<div class="prev"><?php next_posts_link('PREVIOUS POSTS'); ?></div>
<div class="next"><?php previous_posts_link('NEXT POSTS'); ?></div>
</nav>
<?php } else { ?>
<nav id="nav-posts">
<div class="prev"><?php next_posts_link('PREVIOUS POSTS'); ?></div>
</nav>
<?php } ?>
<?php wp_reset_postdata(); ?>
任何人都可以帮助我吗? 我不知道问题出在哪里......
感谢您的帮助
答案 0 :(得分:1)
我认为你没有使用$ paged变量;
使用$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
在WP_Query()函数之前
答案 1 :(得分:0)
Hello显示最近发布的分页
<?php if ( have_posts() ) : ?>
<!-- Add the pagination functions here. -->
<!-- Start of the main loop. -->
<?php while ( have_posts() ) : the_post(); ?>
<!-- the rest of your theme's main loop -->
<?php endwhile; ?>
<!-- End of the main loop -->
<!-- Add the pagination functions here. -->
<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div>
<div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); ?></div>
<?php else : ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>