I need to display a post time of the comment for a particular article or node. I need the post time of the comment in the format Time ago.
For example : 1 minute ago
Can there is any way to achieve the Time ago format display for comment display in drupal 7.
I think I remember there may be a native function that does this in D7 but have not found it. So meanwhile you could just have this function in a template:
Then, when you need to print a ‘time since’ type of date, for instance time since user has logged in:
Hope that helps, good luck.
PS – Consider posting upcoming questions on drupal.stackexchange.com your post will be targeted to many awesome Drupal devs there. Good-luck, happy coding.
Update – There IS a native function in Drupal to format date intervals, it is called format_interval.
Usage example:
Much simpler like this.