DedeCMS当天或24小时内发表文章日期显示红色

时间:2014-10-15

关于DedeCMS在当天发表的文章显示红色、添加new图标的问题,网上很多都是24小时内的,这里主要讲解如何真正的使当天显示红色,而不是24小时内的文章显示红色。

真正的“当天”显示红色,实现代码

1
2
3
4
5
6
7
8
[field:pubdate runphp='yes']
if(date("Y-m-d",@me)==date("Y-m-d")){
@me='<font color="#FF0000">'.GetDateTimeMK(@me).'</font>';
}
else{
@me=GetDateTimeMK(@me);
}
[/field:pubdate]

在上面的代码中,我们使用了dedecms的标准时间函数(GetDateTimeMK(@me)),显示出来的时间是格式:2010-10-17 21:40:36,如果您想要其它格式,例如:年月日,那么实现代码如下:

1
2
3
4
5
6
7
[field:pubdate runphp='yes']
if(date("Y-m-d",@me)==date("Y-m-d")){
@me='<font color="#FF0000">'.MyDate('Y-m-d',@me).'</font>';
}else{
@me=MyDate('Y-m-d',@me);
}
[/field:pubdate]

再来看下24小时内发表的文章,显示红色的代码,我们直接用 pubdate - time() 做减法后判断情况输出结果。

代码如下:

1
2
3
4
5
6
7
8
[field:pubdate runphp='yes']
$nowTime = time();
if($nowTime - (3600 * 24) < @me){
@me='<font color="#FF0000">'.GetDateTimeMK(@me).'</font>';
}else{
@me=GetDateTimeMK(@me);
}
[/field:pubdate]

时间格式与当天的修改方法是一样的。不再赘述。(完)

上一条:去掉dedecms推荐文章标题的加粗样式 下一条:dedecms 内容页调用关键词和链接的方法

相关文章

最新文章