Skip to content

Instantly share code, notes, and snippets.

@AnkanSoul
Created April 25, 2018 15:44
Show Gist options
  • Select an option

  • Save AnkanSoul/74a60c018f21154b690c33e283958d20 to your computer and use it in GitHub Desktop.

Select an option

Save AnkanSoul/74a60c018f21154b690c33e283958d20 to your computer and use it in GitHub Desktop.
Post timing
--------------------Post timing ago----------------------
function time_ago( $type = 'post' ) {
$d = 'comment' == $type ? 'get_comment_time' : 'get_post_time';
return human_time_diff($d('U'), current_time('timestamp')) . " " . __('ago');
}
<?php echo time_ago(); ?>
-------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment