WordPress の記事に最終更新日を表示させる

the_modified_date($d string, $before string, $after string, $echo bool);

テンプレートタグ/the_modified_date

  • $d フォーマット ex) 'Y年m月d日'
  • $before (デフォルト値: '') 文頭に追加する文字列 (省略可能)
  • $after (デフォルト値: '') 文末に追加する文字列 (省略可能)
  • $echo (デフォルト値: true) true だと echo が関数内で呼ばれる。false だと文字列で返る (省略可能)
<div>
	最終更新日: <time><?php the_modified_date('Y-m-d'); ?></time>
</div>