我有一个分类页面叫做taxonomy-hotels.php
我需要得到所有与特定taxonomy-term
. 假设我有一个术语5 star hotel
它有15个帖子。但只有10次返回/显示。
请让我知道如何获取所有帖子?这是我当前的代码。
<?php
if(have_posts()) :
while(have_posts()) : the_post();
?>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="item">
<a href="<?php the_permalink(); ?>">
<h2><?php the_title(); ?></h2>
<?php the_post_thumbnail(); ?>
</a>
</div>
</div>
<?php
endwhile;
endif;
?>