Created
October 2, 2018 19:40
-
-
Save scofennell/a645aea2d6627d9ec4303356f4b8841a 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 | |
function agoify( $from_date, $to_date = FALSE ) { | |
if( ! $to_date ) { | |
$to_date = current_time( 'timestamp', get_option( 'gmt_offset' ) ); | |
} | |
$human_time = human_time_diff( $from_date, $to_date ); | |
$out = sprintf( esc_html__( '%s ago', 'boilerplate' ), $human_time ); | |
return $out; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment