[wordpress]日付フォーマットのメモ

「the_date」は、同日の投稿で、1件目(一番最後の記事)だけに日付を表示する

[php]
<?php the_date(‘Y年m月d日’, ‘<div class="dates">’, ‘</div>’); ?>
[/php]

曜日も表示したい時

[php]
<?php the_date("Y年m月d日 l", ‘<div class="dates">’, ‘</div>’); ?>
[/php]

同日の投稿でも、すべての記事に日付を表示したいときは、「the_time」を使う

[php]
<?php the_time(‘Y年m月d日’, ‘<div class="dates">’, ‘</div>’); ?>
[/php]

フォーマットのメモ
  • l = 曜日(小文字の L)
  • n = 月
  • j = 日にち
  • S = 英語で日にちにつける接尾辞 (1st, 2nd, 15th の st, nd, th)
  • Y = 4桁の年(小文字の y を使うと2桁になる)

wordpress codex 日付と時刻の書式