データベースから日付を取得します。Time Agoは正常に動作していますが、更新時間ではありません
<abbr class="timer timeago modified"><?php echo date('Y-m-d H:i:s', strtotime($row['project_create_date'])); ?></abbr>
JQuery
$(function() {
/*Time Ago*/
prepareDynamicDates();
var time = '';
$('.timer').each(function(){
var time = $(this).text();
$(this).text(jQuery.timeago(time));
});
});