Search code examples
drupaldrupal-7drupal-theming

Drupal Display Modified Date for Node


Is there a simple way in Drupal to display the last modified date for a node as part of the node.tpl.php file?


Solution

  • If you put this code in the node.tpl.php file it will show the date of the last change to the node:

    <?php
    echo format_date($node->changed);
    ?>
    

    with whatever HTML you want around it.