Posted by KaiseRCrazY on 12th April 2010

Show timestamps like social networks!

You can show your timestamps like other social networks. With this simple and awesome trick, you can change long date and time stamps with ex. twitter’s “1 min ago“. Lets begin…

Here is the code;

Add this code into your theme’s functions.php;

function time_ago( $type = 'post' ) {
	$d = 'comment' == $type ? 'get_comment_time' : 'get_post_time';

	return human_time_diff($d('U'), current_time('timestamp')) . " " . __('ago');

}

After that call this function wherever you want!

<?php echo time_ago(); ?>

That’s All! Have a nice day.

  • del.icio.us
  • Digg
  • Facebook
  • FriendFeed
  • Reddit
  • StumbleUpon
  • Technorati
  • PDF
  • Print

No comments yet!

Post your comments