我正在尝试从我创建的 gallery_Category 分类中的 cat 5 中的帖子加载所有图像。没有任何工作,我不明白为什么不工作。
<?php
$args = array(
'post_type' => 'post',
'taxonomy' => 'gallery_category',
'term_id' => '5'
);
$query = new WP_Query($args);
while ($wp_query->have_posts()) {
$wp_query->the_post();
?>
<?php the_post_thumbnail(); ?>
<?php } ?>