私が作成した gallery_Category 分類内の猫 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 } ?>