This file contains 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
/** | |
* Time ago - Human time diff enhanced | |
* | |
* @param string $timeformat Fallback date format | |
* @param int $timestamp Post or comment or anyhing's timestamp | |
* @return string | |
*/ | |
if( ! function_exists('dw_time_ago') ){ | |
function dw_time_ago( $timeformat = 'j F Y H:i', $timestamp = '' ){ | |
if( ! $timestamp ){ |