打开/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=###}
本文地址:https://www.qiuhai.com/doc/1753.html 复制链接
如果还有疑问,欢迎加入我们的QQ交流群:887790 加入Q群
易优最新程序下载: 点击下载