Skip to content

Instantly share code, notes, and snippets.

@scofennell
Created October 2, 2018 19:40
Show Gist options
  • Save scofennell/a645aea2d6627d9ec4303356f4b8841a to your computer and use it in GitHub Desktop.
Save scofennell/a645aea2d6627d9ec4303356f4b8841a to your computer and use it in GitHub Desktop.
<?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