如何获取与某个分类相关的所有帖子?

时间:2017-07-21 作者:user2584538

我有一个分类页面叫做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;
            ?>

2 个回复
SO网友:Jacob Peattie

您可能只设置为每页显示10篇文章,但您的模板没有任何分页控件,因此您可以转到下一页。有几个不同的选项(即下一个/上一个链接,或编号的页面)。本文涵盖了以下内容:https://developer.wordpress.org/themes/functionality/pagination/

SO网友:Shefali

如果在一个页面中显示所有帖子,则可以使用\'posts_per_page\' => -1 在查询或中,如果要在一页中显示有限的记录,则可以使用wordpress分页

结束

相关推荐

更改_Terms中的最后一个分隔符

我如何展示the_terms 带逗号和“&;”在最后一个之前示例:标记:书籍、评论和;历史我需要在术语和a之间显示“,”&上学期之前。我使用以下代码来显示the_terms 在单个岗位上:<?php the_terms( $post->ID, \'post_tag\', \'Tags: \', \', \', \' \' ); ?>