参考サイト
固定ページの最終更新日をループ内と、ループ外で表示する
目次
ループ内
<?php the_modified_date('Y.m.d') ?>
投稿日と更新日が違う場合にのみ、更新日を表示
<?php if( get_the_date() != get_the_modified_date() ): ?>
<span class="edit"><?php the_modified_date('Y.m.d') ?></span>
<?php endif; ?>
ループ外
<?php echo get_post_modified_time('Y.m.d',false,$page_id); ?>
コメント