how to format posted day to "xxdayxxhr ago" like Digg ???help

Comments

huangweiqiu’s picture

I have just solved it:~

we need to use this function: format_interval

print t('Posted by: !username !date ago', array('!username' => theme('username', $node), '!date' => format_interval(time() -$node->created )));

glennr’s picture

http://drupal.org/node/61565#comment-208851 and http://drupal.org/node/61565#comment-670802.

The latter snippet can be used in comment.tpl.php, node.tpl.php and any nodetype template file, and can be customised with another PHP date format if you want.