オリジナルのtheme(テーマ)を作る13:月別ページを作る

月別ページの年月を出力します。

  1. <?php if(is_month()) : ?>
  2. <div class="page-header">
  3. <h1><?php single_month_title(); ?></h1>
  4. </div>
  5. <!--//page-header -->
  6. <?php endif; ?>

<?php single_month_title(); ?>
この場合、表記が「○月2016」という形になります。

表記をなじみのある形にする。

  1. <?php if(is_month()) : ?>
  2. <div class="page-header">
  3. <h1><?php echo get_the_time('Y年m月'); ?></h1>
  4. </div>
  5. <!--//page-header -->
  6. <?php endif; ?>

<?php echo get_the_time('Y年m月'); ?>
これで「2016年○月」という形で出力されます。

月別のページだけに出力されるようにする。

  1. <?php if(is_month()) : ?><?php endif; ?>

コメントは受け付けていません。