投稿記事の更新日は「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 ); ?>
日付の出力フォーマットは下記サイトで確認できます。
投稿記事の更新日は「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 ); ?>
日付の出力フォーマットは下記サイトで確認できます。