我的索引上有两个循环。php页面中,第一个循环仅返回两条特色内容区域的粘性帖子。
第二个自定义循环获取其他帖子,但不包括粘性帖子,这就是循环;
<?php
$the_query = new WP_Query( array(
\'post__not_in\' => get_option( \'sticky_posts\' ),
) );
if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();
?>
<?php get_template_part( \'content\' ); ?>
<?php endwhile; endif; ?>
我相信正是这个循环打破了分页,使相同的帖子出现在每个页面上。如果我用一个普通的循环替换这个循环;
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
<?php endwhile; endif; ?>
然后分页工作正常。
这是我在函数中使用的分页函数。php
// Archive navigation function
function gwad_archive_navigation() {
global $wp_query;
if ( $wp_query->max_num_pages > 1 ) : ?>
<ul class="archive-nav">
<?php
if ( get_previous_posts_link() ) echo \'<li class="archive-nav-newer">\' . get_previous_posts_link( \'← \' . __(\'Previous\', \'gwad\')) . \'</li>\';
$paged = get_query_var( \'paged\' ) ? absint( get_query_var( \'paged\' ) ) : 1;
$max = intval( $wp_query->max_num_pages );
/** Add current page to the array */
if ( $paged >= 1 )
$links[] = $paged;
/** Add the pages around the current page to the array */
if ( $paged >= 3 ) {
$links[] = $paged - 1;
$links[] = $paged - 2;
}
if ( ( $paged + 2 ) <= $max ) {
$links[] = $paged + 2;
$links[] = $paged + 1;
}
/** Link to first page, plus ellipses if necessary */
if ( ! in_array( 1, $links ) ) {
$class = 1 == $paged ? \' active\' : \'\';
printf( \'<li class="number%s"><a href="%s">%s</a></li>\' . "\\n", $class, esc_url( get_pagenum_link( 1 ) ), \'1\' );
if ( ! in_array( 2, $links ) )
echo \'<li>...</li>\';
}
/** Link to current page, plus 2 pages in either direction if necessary */
sort( $links );
foreach ( (array) $links as $link ) {
$class = $paged == $link ? \' active\' : \'\';
printf( \'<li class="number%s"><a href="%s">%s</a></li>\' . "\\n", $class, esc_url( get_pagenum_link( $link ) ), $link );
}
/** Link to last page, plus ellipses if necessary */
if ( ! in_array( $max, $links ) ) {
if ( ! in_array( $max - 1, $links ) )
echo \'<li class="number">...</li>\' . "\\n";
$class = $paged == $max ? \' active\' : \'\';
printf( \'<li class="number%s"><a href="%s">%s</a></li>\' . "\\n", $class, esc_url( get_pagenum_link( $max ) ), $max );
}
if ( get_next_posts_link() ) echo \'<li class="archive-nav-older">\' . get_next_posts_link( __(\'Next\', \'gwad\') . \' →\') . \'</li>\';
?>
</ul> <!-- /archive-nav -->
<?php endif;
}
因为我是PHP的noob,所以我完全不知道发生了什么。
分页在存档页面上确实有效,第1、2、3页等将显示不同的帖子,这只是分页索引。php似乎已损坏。