Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save cristianstan/10386203 to your computer and use it in GitHub Desktop.

Select an option

Save cristianstan/10386203 to your computer and use it in GitHub Desktop.
Wordpress: Show post date time ago/ days ago
<?php
// add this within functions.php
function comments_time_ago( $type = 'comment' ) {
$d = 'comment' == $type ? 'get_comment_time' : 'get_post_time';
return human_time_diff($d('U'), current_time('timestamp')) . " " . __('ago');
}
//to show comment time
<?php echo comments_time_ago(); ?>
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment