how to format posted day to "xxdayxxhr ago" like Digg ???help
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 )));
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.
Comments
I have just solved it:~ we
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 )));
This worked for me
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.