/* Function which displays your post date in time ago format */ function meks_time_ago ( ) { return human_time_diff ( get_the_time ( 'U' ) , current_time ( 'timestamp' ) ) . ' ' . __ ( 'ago' ) ; } 2 3 4 5 6 7 8 9 <?php if ( have_posts ( ) ) : ?> <?php while ( have_posts ( ) ) : the_post ( ) ; ?> <?php the_title ( ) ; /* post title */ ?> <?php echo meks_time_ago ( ) ; /* post date in time ago format */ ?> <?php the_content ( ) ; /* post content */ ?> <?php endwhille ( ) ; ?> <?php endif ; ?> For More details Read this https://mekshq.com/change-wordpress-date-format-to-time-ago/