打开/extend/function.php文件,在里面添加下面代码:
1.判断当天文章加图标
function diy_MyDate($add_time = 0)
{
$str = $add_time;
$time = strtotime(date('Y-m-d'));
if (intval($str) > $time) {
$pic = handle_subdir_pic('/public/static/admin/images/new.gif');
$str = "
";
} else {
$str = date('Y-m-d', $str);
}
return $str;
}
/public/static/admin/images/new.gif为图片路径,所需图片请自行添加并修改图片路径
调用代码: {$field.add_time|diy_MyDate=###}
2.判断当天文章加标红样式
function diy_MyDate($add_time = 0)
{
$str = $add_time;
$time = strtotime(date('Y-m-d'));
if (intval($str) > $time) {
$str = "".date('Y-m-d', $str)."";
} else {
$str = date('Y-m-d', $str);
}
return $str;
}
为标红代码,如需其他颜色,请自行修改
调用代码: {$field.add_time|diy_MyDate=###}
注:两个函数不能共同使用