【WordPress】single.phpテンプレートのheader部分記載の一例

WordPressでオリジナルテーマ制作時、single.phpのテンプレートを作成する際、個人的に良く使用するheader部分の記載を紹介します。

header記載 その1

<article>
   <header>
     <time datetime="<?php the_time('Y.m.d'); ?>"><?php the_time('Y.m.d'); ?></time>
     <h1><?php the_title(); ?></h1>
   </header>
</article>

header記載 その2

<article>
   <header>
     <h1><?php the_title(); ?></h1>
      <ul>
         <li><time datetime="<?php the_time('Y.m.d'); ?>"><?php the_time('Y.m.d'); ?></time></li>
         <li><?php the_category(', '); ?></li>
      </ul>
   </header>
</article>

あくまで一例として参考にしてください。

back to index