首页 > CMS > 织梦DEDE > 正文

织梦dedecms模板中时间标签显示今日昨日的效果

2024-07-12 08:29:59
字体:
来源:转载
供稿:网友
在织梦dedecms模板中时间标签显示今日昨日的效果的方法 。 添加代码: [field:pubdate  runphp='yes']               $ntime = time();               $oneday = 3600 * 24;               $oneday1 = 2 * 3600 * 24;               if(($ntime – @me)< $oneday)               { @me = ‘<b class="color5">今 日</b>’;}               elseif (($ntime – @me)< $oneday1)               {@me = ‘<b class="color2">昨 日</b>’;               }               else               { @me = MyDate(‘Y.m:d’,@me);}               [/field:pubdate]
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表