我正在尝试在我的主循环中偏移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; ?>