0

我正在尝试从我创建的 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 } ?>
4

1 回答 1

1
<?php

$args = array(
    'post_type' => 'post',
    'tax_query' => array(
        array(
            'taxonomy'  => 'gallery_category',
            'field'     => 'slug',
            'terms'     => '5'
        )
    )
);

$my_query = new WP_Query($args);
while ($my_query->have_posts()) {
$my_query->the_post();

  if ( has_post_thumbnail()) {
    the_post_thumbnail();
  } 

 } 
?>

尝试这个

也请参考这里

wp查询

wordpress 循环

于 2013-10-01T16:00:58.527 回答