您可以像这样进行“第二次”循环:
<?php $posts = query_posts($query_string); if (have_posts()) : while (have_posts()) : the_post();
if ($paged >= 2) {echo "your content";}
endwhile; endif; ?>
现在您可以使用
$paged
无论你想去哪里。
就像引用的评论一样,这不是最好的解决方案。真是又快又脏。
经过一点测试:您可以使用$paged
循环外部。但您可以使用查询代码中所需的活动页面
<?php get_query_var(\'paged\'); ?>
因为活动页面是活动URL的参数。对于您的问题:
if (get_query_var(\'paged\') >=2) {
echo "text for pages from 2 and up";
} else {
echo "text for the first page";
}