admin管理员组文章数量:1130349
I want the posts on the main page to be arranged in Bootstrap columns in this way:
I have this code, but instead of the first two posts, only one is displayed.
<?php get_header(); ?>
<?php $count_one = 1; ?>
<?php $count_two = 0; ?>
<?php if (have_posts()) : while (have_posts()) : the_post();
if ($count_one % 5 == 1): ?>
<div class="row one">
<?php get_template_part('template-parts/content-one'); // For col-6 ?>
<?php $count_one++; ?>
</div>
<?php else: ?>
<?php if ($count_two % 3 == 0): ?>
<div class="row two">
<?php endif; ?>
<?php get_template_part('template-parts/content-two'); // For col-4 ?>
<?php $count_two++;
if (($count_two % 3) == 0) { ?></div><!--row-->
<?php } ?>
<?php endif; ?>
<?php $count_one++; endwhile; else: ?>
<p><?php _e('We can’t find what you’re looking for.', THEME_SLUG); ?></p>
<?php endif;
if (($count_two % 3) == 1) { ?>
</div><!--row-->
<?php } ?>
<?php get_footer(); ?>
Please tell me where the error is.
I want the posts on the main page to be arranged in Bootstrap columns in this way:
I have this code, but instead of the first two posts, only one is displayed.
<?php get_header(); ?>
<?php $count_one = 1; ?>
<?php $count_two = 0; ?>
<?php if (have_posts()) : while (have_posts()) : the_post();
if ($count_one % 5 == 1): ?>
<div class="row one">
<?php get_template_part('template-parts/content-one'); // For col-6 ?>
<?php $count_one++; ?>
</div>
<?php else: ?>
<?php if ($count_two % 3 == 0): ?>
<div class="row two">
<?php endif; ?>
<?php get_template_part('template-parts/content-two'); // For col-4 ?>
<?php $count_two++;
if (($count_two % 3) == 0) { ?></div><!--row-->
<?php } ?>
<?php endif; ?>
<?php $count_one++; endwhile; else: ?>
<p><?php _e('We can’t find what you’re looking for.', THEME_SLUG); ?></p>
<?php endif;
if (($count_two % 3) == 1) { ?>
</div><!--row-->
<?php } ?>
<?php get_footer(); ?>
Please tell me where the error is.
本文标签: phpPosts in two different columns Bootstrap
版权声明:本文标题:php - Posts in two different columns Bootstrap 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749025157a2304988.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论