我很困惑。我下面的代码可以绕开我的wordpress主题,它涉及的标签和子类别的帖子都链接到“ quotes”类别,并且在分页中期之前都可以正常工作。我不知道为什么。直到分页5正常,然后在分页6、7和8上默认使用主题循环,然后在9上再次使用我创建的循环正常恢复。
<?php
$args = array(
'post_type' => 'post',
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'quotes',
),
),
);
$query = new WP_Query( $args );
if(have_posts()):?>
<?php while (have_posts()) : the_post(); ?>
<h3> <a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h3>
<?php endwhile;wp_reset_query(); ?>
<?php endif; ?>