【WordPress】投稿の個別記事ページの書き方(カテゴリー付)

<?php get_header(); ?>

<main class="single-post">

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

  <article <?php post_class(); ?>>

    <!-- 日付 -->
    <time class="post-date" datetime="<?php echo get_the_date('c'); ?>">
      <?php echo get_the_date('Y.m.d'); ?>
    </time>

    <!-- カテゴリー(スラッグをclassに追加) -->
    <?php
    $cats = get_the_category();
    if (!empty($cats)) :
      $cat = $cats[0]; // 先頭のカテゴリーを使用
    ?>
      <span class="post-category cat-<?php echo esc_attr($cat->slug); ?>">
        <?php echo esc_html($cat->name); ?>
      </span>
    <?php endif; ?>

    <!-- タイトル -->
    <h1 class="post-title">
      <?php the_title(); ?>
    </h1>

    <!-- 本文 -->
    <div class="post-content">
      <?php the_content(); ?>
    </div>

  </article>

<?php endwhile; endif; ?>

</main>

<?php get_footer(); ?>