在index.php
第页,我需要跳过5篇帖子(博客中的最后5篇帖子)。
我使用the WP-Paginate plugin, 但所有页面都显示相同的内容。我正在使用offset=5
, 这是我的代码:
<?php $paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;?>
<?php $additional_loop = new WP_Query("offset=5&paged=".$paged);
if ($additional_loop->have_posts()) :
while ($additional_loop->have_posts()) : $additional_loop->the_post();
the_title();?><br/>
<?php the_content();?>
<?php endwhile;endif;?>
<?php if(function_exists(\'wp_paginate\')) {
wp_paginate(\'range=4&anchor=2&nextpage=Next&previouspage=Previous\');
} ?>