I have a blog in my site. In blog listing, I want to show date and time. I get the published post date with the_time()
. But the getting time is a tricky part.
I don't want to show posted time e.g. 1:30 PM
I want to show the time duration of a post ... I mean like this
53 minutes ago
or
4 hours ago
or
2 days ago
or
5 months ago
or
1 year ago
I first try this code get_post_time('U', $post->ID)
or get_post_time('U', true)
but it gives me the time stamp, Like this 1486128075
And also try this get_the_time()
but it gives me 1:00 PM
Hope you understand my question