易优CMS文章列表时间戳调用如何判断当天文章加图片或样式
打开/extend/function.php文件,在里面添加下面代码:
1.判断当天文章加图标
/*自定义时间戳当天加图片函数文件,调用代码:{$field.add_time|diy_MyDate=###}*/ 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 = "<img src='{$pic}' />";
} else {
$str = date('Y-m-d', $str);
}
return $str;
}
/public/static/admin/images/new.gif为图片路径,所需图片请自行添加并修改图片路径
调用代码: {$field.add_time|diy_MyDate=###}
2.判断当天文章加标红样式
/*自定义时间戳当天标红函数文件,调用代码:{$field.add_time|diy_MyDate=###}*/function diy_MyDate($add_time = 0)
{
$str = $add_time;
$time = strtotime(date('Y-m-d'));
if (intval($str) > $time) {
$str = "<font color='red'>".date('Y-m-d', $str)."</font>";
} else {
$str = date('Y-m-d', $str);
}
return $str;
}
<font color='red'></font>为标红代码,如需其他颜色,请自行修改
调用代码: {$field.add_time|diy_MyDate=###}