Created
April 10, 2014 14:08
-
-
Save cristianstan/10386203 to your computer and use it in GitHub Desktop.
Wordpress: Show post date time ago/ days ago
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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