我希望只显示我创建的自定义帖子类型分类法中的顶级类别。。。产品类别。
我希望将以下数据拉入循环:
类别标题(the\\u title())类别描述(the\\u archive\\u description())
永久链接(the\\u Permalink())缩略图(自定义字段…the\\u字段(Category\\u缩略图))<?php
$loop = new WP_Query();
while ( $loop->have_posts() ) : $loop->the_post();
$myterms = get_terms( array( \'taxonomy\' => \'taxonomy_name\', \'parent\' => 0 ) );
foreach( wp_get_post_terms() as $term ) { ?>
<div class="col-eq-height col-md-6" style="margin-bottom:30px;">
<div class="product">
<div id="thumbnail">
<?php the_field(\'product_category_thumbnail\'); ?>
</div>
<div id="content">
<p id="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
</div>
</div>
</div>
<?php }
endwhile; ?>