How to: Display dates as “time ago” in WordPress
If you are looking to show WordPress post dates like ‘Posted 2 hours ago’ then you landed on the right place. Just paste the code in your WordPress theme where you want to show the time and date. This human readable Time/Date showing method also work with comments.
For Posts:
1 | Posted <?php echo human_time_diff(get_the_time('U'), current_time('timestamp')) . 'ago'; ?> |
For Comments:
1 | Posted <?php echo human_time_diff(get_comment_time('U'), current_time('timestamp')) . 'ago'; ?> |




