Show time ago (facebook/twitter like) on wordpress

This function can be used to display time ago that using by facebook or twitter. Here the example:

13 mins ago, 1 month ago, or 1year ago.

You can add this at your template function file :)

[sourcecode lang="php"]
function time_ago($d) {
$t = strtotime($d);
return human_time_diff($t, current_time('timestamp')) . " " . __('ago');
}
?>
[/sourcecode]

How to use?

[sourcecode lang="php"]
comment_date); ?>
[/sourcecode]

3 thoughts on “Show time ago (facebook/twitter like) on wordpress

  1. Pingback: Show time ago (facebook/twitter like) on… « Small is Beautiful

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>