我正在尝试显示具有自定义分类的自定义帖子类型,但我没有任何运气。什么都没有出现。我很感激任何帮助。
帖子类型 = 图库
自定义分类 slug = photoarea
我要显示的“照片区域”=第四
<?php
$args = array(
'post_type' => 'gallery',
'tax_query' => array(
array(
'taxonomy' => 'photoarea',
'field' => 'fourth',
)
),
'posts_per_page' => 10,
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();
the_post_thumbnail();
endwhile; endif;
wp_reset_query();
?>