Created
April 25, 2018 15:44
-
-
Save AnkanSoul/74a60c018f21154b690c33e283958d20 to your computer and use it in GitHub Desktop.
Post timing
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
| --------------------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