所以我想在家里每两个帖子后加一个div。php和我几乎遵循了找到的答案here 但对其进行了一点修改,以便与主题的其余部分配合使用。现在的问题是,在硬编码的第一个分区中,有三个岗位,而不是两个岗位。我认为问题在于如何统计帖子,但不是百分之百确定。如果我计算帖子的方式有什么问题或者问题出在其他地方,我很想得到一些指针。这是我的家。php
<?php get_template_part(\'templates/page\', \'header-home\'); ?>
<?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="center-row"><!--not dynamic-->
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part(\'templates/content\', get_post_format()); ?>
<?php if ( 0 !== $wp_query->current_post
&& 0 == $wp_query->current_post%2
) {
echo \'</div><div class="center-row">\';
} ?>
<?php endwhile; ?>
</div><!--last row-->
<?php if ($wp_query->max_num_pages > 1) : ?>
<nav class="post-nav">
<ul class="pager">
<li class="previous"><?php next_posts_link(__(\'← Older posts\', \'roots\')); ?></li>
<li class="next"><?php previous_posts_link(__(\'Newer posts →\', \'roots\')); ?></li>
</ul>
</nav>
<?php endif; ?>