我有一个基本的 WordPress 循环,它可以正常工作并输出帖子,直到我尝试向循环添加分类参数。一旦我将它添加到循环中,它就会停止输出任何东西,但不会给出任何 PHP 错误。循环如下。
<?php
$newsLoop = new WP_Query(array('post_type' => 'news&events', 'taxonomy' => 'postcategory', 'term' => 'featured', 'posts_per_page' => 3, 'orderby' => 'post_date', 'order' => 'ASC'));
while ( $newsLoop->have_posts() ) : $newsLoop->the_post();
?>
<div class="newsEvent">
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p style="text-align:center;"><a href="<?php the_permalink(); ?>">Read More</a></p>
</div>
<?php endwhile; wp_reset_postdata(); ?>
我试过一起删除帖子类型参数,只是查询分类法,那里也没有运气。有什么我在这里遗漏或没有正确执行的吗?