![]() |
|
|
Websites Let us know about your website or any other website you find helpful, here. |
![]() |
|
Thread Tools |
#1
|
||||
|
||||
![]()
Some people may prefer to have so-called “time ago” format in the similar way to Twitter and Facebook style like posted “10 minutes ago”, “1 hour ago”, “3 hours ago”, etc…
for that add these lines to your functions php file fo your theme Code:
/* Function which displays your post date in time ago format */ function sawfirst_time_ago() { return human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ).' '.__( 'ago' ); } then replace the date code in your theme with tthis Code:
<?php echo sawfirst_time_ago(); /* post date in time ago format */ ?> that's all!!!
__________________
![]() |