我正在尝试添加一个术语列表作为自定义帖子类型的类。
<?php while($portfolio->have_posts()) : $portfolio->the_post(); ?>
<?php $categories = get_the_terms($post->ID, \'project_type\');
foreach($categories as $category){
return $category->name;
}
?>
<div class=\'portfolio-tile <?php echo $category ;?>\'>
<?php the_post_thumbnail(\'medium\' ); ?>
</div>
<?php endwhile; ?>
</div>
<?php wp_reset_query(); ?>