Web production note

 【更新日 :

【WordPress】投稿記事の更新日を表示する。

Category:
WordPress

投稿記事の更新日は「the_modified_date」で出力できます。

<?php the_modified_date('Y年m月d日'); ?>

取得する場合は「get_the_modified_date」です。

<?php $date = get_the_modified_date( 'Y年m月d日', $post->ID ); ?>

日付の出力フォーマットは下記サイトで確認できます。

PHP: date – Manual

関連リンク

参考リンク