<?php
$terms = get_the_terms($post->ID,’タクソノミー名’);
$term = $terms[0];
//カテゴリー名
$term_name = $term->name;
//カテゴリーID
$term_id = $term->cat_ID;
//カテゴリースラッグ
$term_slug = $term->slug;
?>
<div class=”cgs__check”>
<div class=”check__single”>
<div class=”check__single__view”>
<img src=”<?php echo get_template_directory_uri(); ?>/image/page-shain/<?php echo $term_slug ?>.svg” alt=””>
</div>
</div>
<div class=”check-wrapper check-single”>
<div class=”check__news page-single”>
<div class=”single__container”>
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<div class=”post__time”><?php the_time(‘Y.m.d’);?></div>
<h2 class=”single__post__title <?php echo $term_slug ?>-c”><?php the_title();?></h2>
<div class=”single__name”>
<p class=”place”><?php the_field(‘work’);?></p>
<p class=”name”><?php the_field(‘name’);?></p>
</div>
<div class=”single__wrapper”>
<?php the_content();?>
</div>
<div class=”btn__block”>
<div class=”btn-box”>
<a href=”<?php echo esc_url( home_url( ‘/’ ) ); ?>/variety/<?php echo $term_slug ;?>” class=”bgc-<?php echo $term_slug ?>”><?php echo $term_name ?>一覧へ戻る</a>
</div>
<div class=”btn-box”>
<a href=”<?php echo esc_url( home_url( ‘/’ ) ); ?>”>
トップページに戻る</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; endif; ?>
<?php get_template_part(‘footer’,’check’); ?>