我无法将我的帖子显示在类别页面上。
它发现帖子是否在内部和类别并且显示内容正常..但我使用的循环没有带来帖子..任何帮助都会很棒。
<?php if (is_category(array(4, 5, 6))) { ?>
<?php if (have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>
<div class="case-study-box">
<a href="<?php the_permalink(); ?>">
<div class="post-img ripple-me" style="background-image: url(<?php the_field('thumbnail_image'); ?>)">
</div>
</a>
<div class="post-intro">
<span><?php the_category(' '); ?></span>
<a href="<?php the_permalink(); ?>"><?php the_title('<h4>', '</h4>'); ?></a>
<a href="<?php the_permalink(); ?>">Read more</a>
</div>
</div>
<!--Close .case-study-box -->
<?php endwhile; else: ?>
<?php endif; ?>
<?php } else { ?>