使用PageNavi插件在循环中偏移帖子

时间:2011-10-11 作者:The Fragile Machine

我正在尝试在我的主循环中偏移1个帖子,我尝试了一些事情,如query\\u posts()等,我可以让偏移量正常工作,但我的分页最终无法正常工作,我正在使用PagNavi插件,任何帮助都将非常棒,代码非常通用,再次感谢!

<?php if (have_posts()) : ?>
<?php query_posts(\'offset=1\');?>
<?php while (have_posts()) : the_post(); ?>

//Content

<?php endwhile; else: ?>
<?php _e(\'Sorry, no posts matched your criteria.\'); ?>
<?php endif; ?>

1 个回复
SO网友:Rarst

也因为查询机制$paged$offset 使用,但不能同时使用两者。基本上,如果需要自定义偏移量,则假定不需要分页。

你可能需要post_limits 和生成的更改LIMIT SQL来调整偏移量,除非我缺少一种更简单的方法。

结束

相关推荐

Paging on a future post loop?

我试图让寻呼在我未来的post循环中工作,但没有用。尽管数据库中有几个有效的帖子,但我没有得到用于分页的链接,而我希望它们位于底部。<?php $args = array( \'post_type\' => \'program\', \'paged\' => get_query_var(\'paged\') ? get_query_var(\'paged\') : 1, \'posts_per_page\' => 1,&#x