Viewing 2 replies - 1 through 2 (of 2 total)
  • <php the_modified_time() ?>

    Used in the loop, that will display what you want. Exactly what file in your theme you add it to depends on what theme you’re using and where you want it to show. Currently, it looks like your theme uses this in index.php and single.php to show the date:

    <?php the_time('j F Y'); ?>

    Maybe change it to this:

    <?php the_time('j F Y'); ?> Last modified: <?php the_modified_time('j F Y') ?>

    http://codex.wordpress.org/Function_Reference/the_modified_time

    Thread Starter ishaangarg

    (@ishaangarg)

    Thanks for the input Bagel, added that 😉

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Display the date post was last updated’ is closed to new replies.