Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wish to add a "Last updated" on my web site (a text automatically showing when my site's content was last up dated).

I found some answers on Drupal forum, unfortunately they all concern Drupal 6 and I simply couldn't get them to work on Drupal 7...

Since I know about nothing about PHP, and I belive it requires to add some PHP code, thank you very much if the answer could be "as simple as possible", and very "step by step" :o)

Thanks for any help!

share|improve this question
Do you need to display the last updated date of ANY content on site (i.e. no matter which piece of content was updated - you display this date) or for every piece of content (node)? The answer on second is below. – Alexey Smirnoff Apr 11 '12 at 15:24

2 Answers

Based on Muhammad's answer I was able to get this to work in Drupal 6. I just needed to modify a little.

<?php print "Last modified date: " . format_date($node->changed, $type = 'small'); ?>
share|improve this answer

You can use the node.tpl.php template and use the following line

<?php
    print "Last modified date: " . format_date($node->changed, "short");
?>

Hope this helps... Muhammad.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.