Created
February 24, 2020 15:35
-
-
Save hmbashar/f8ec91c7fc26f09efad86411b4da9584 to your computer and use it in GitHub Desktop.
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 | |
| //comment time ago convert | |
| function varsity_get_comment_time( $comment_id = 0 ){ | |
| return sprintf( | |
| _x( '%s ago', 'Human-readable time', 'varsity' ), | |
| human_time_diff( | |
| get_comment_date( 'U', $comment_id ), | |
| current_time( 'timestamp' ) | |
| ) | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment