我正在使用Wordpress和Roots模板。 我创建了一个存档页面来显示成员个人资料。 - 它只是index.php保存为archive-members.php所以它获得了成员帖子,但我不知道如何更改它显示的数字。我想要它显示所有。 它没有使用任何自定义的帖子类型查询,它只是这个后期类型slug的存档
这是我的页面代码。
<div class="purple row">
<div class="container">
<div class="col-lg-12">
<?php get_template_part('templates/page', 'header'); ?>
</div>
</div>
</div>
<?php if (!have_posts()) : ?>
<div class="alert alert-warning">
<?php _e('Sorry, no results were found.', 'roots'); ?>
</div>
<?php get_search_form(); ?>
<?php endif; ?>
<div class="row pagecontent">
<div class="container">
<?php while (have_posts()) : the_post(); ?>
<div class="col-sm-3">
<?php get_template_part('templates/members', get_post_format()); ?>
</div>
<?php endwhile; ?>
<?php if ($wp_query->max_num_pages > 1) : ?>
</div>
</div>
<div class="container">
<div class="col-lg-12">
<nav class="post-nav">
<ul class="pager">
<li class="next"><?php next_posts_link(__('Next Page →', 'roots')); ?></li>
<li class="previous"><?php previous_posts_link(__('← Previous Page', 'roots')); ?></li>
</ul>
</nav>
</div>
</div>
<?php endif; ?>
答案 0 :(得分:1)
我相信这个问题已经回答here.
该线程中的答案使用query_post()函数链接到WordPress codex。
那,或者作为线程中的其他人,您可以尝试更改管理界面中的设置(设置 - &gt;阅读)。在那里,您将看到一个允许您更改页面上显示的帖子数量的框。