タクソノミーページと、カテゴリーによって変更

<?php if (have_posts() ) : ?>
<?php while (have_posts() ) : the_post();?>

<!– ▽ ループ開始 ▽ –>
<div class=”news__list”>
<a href=”<?php the_permalink();?>”>
<?php if (has_post_thumbnail()):?>
<p class=”news__thumbnail”><?php the_post_thumbnail(‘medium’);?></p>

<?php else: ?>
<p><img src=”<?php echo get_template_directory_uri(); ?>/image/check/sample.png” width=”500px” alt=””></p>
<?php endif;?>

<div class=”news__list__name”>
<?php if ( is_object_in_term($post->ID, ‘variety’,’security’) ): ?>
<p class=”category-shape bgc-sec”>
警備情報
</p>

<?php elseif ( is_object_in_term($post->ID, ‘variety’,’welfare’) ): ?>
<p class=”category-shape bgc-wel”>
福利厚生
</p>
<?php elseif ( is_object_in_term($post->ID, ‘variety’,’company-event’) ): ?>
<p class=”category-shape bgc-com”>
社内行事
</p>
<?php elseif ( is_object_in_term($post->ID, ‘variety’,’educate’) ): ?>
<p class=”category-shape bgc-edu”>
教育研修
</p>
<?php endif; ?>

<?php the_date(‘Y.m.d’) ; ?>
</div>
<div class=”news__list__text”>
<h4><?php the_title(); ?></h4>
<p><?php the_excerpt();?></p>

</div>
</a>

</div>

<!– △ ループ終了 △ –>

<?php endwhile; ?>
<?php endif;?>

<?php wp_reset_postdata(); ?>

投稿者 @rongai