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

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

<?php if(is_month()) : ?>
            <div class="page-header">
                <h1><?php single_month_title(); ?></h1>
            </div>
            <!--//page-header -->
<?php endif; ?>

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

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

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

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

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

<?php if(is_month()) : ?>~<?php endif; ?>

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