how do i get the post posted-time to be displayed says - x hours ago. like on mashable
thanks
how do i get the post posted-time to be displayed says - x hours ago. like on mashable
thanks
<?php $hrs_ago = round(( date('U') - get_the_time('U') ) / 3600 ); ?>
works in the loop;
get_the_time()
http://codex.wordpress.org/Function_Reference/get_the_time
This topic has been closed to new replies.