POST TIME:2020-04-02 17:30
關(guān)于DedeCMS在當(dāng)天發(fā)表的文章顯示紅色、添加new圖標(biāo)的問題,網(wǎng)上很多都是24小時內(nèi)的,這里主要講解如何真正的使當(dāng)天顯示紅色,而不是24小時內(nèi)的文章顯示紅色。
真正的“當(dāng)天”顯示紅色,實現(xiàn)代碼:
1
2
3
4
5
6
7
8
|
[field:pubdate runphp='yes']
if(date("Y-m-d",@me)==date("Y-m-d")){
@me='<fontcolor="#FF0000">'.GetDateTimeMK(@me).'</font>';
}
else{
@me=GetDateTimeMK(@me);
}
[/field:pubdate]
|
在上面的代碼中,我們使用了dedecms的標(biāo)準(zhǔn)時間函數(shù)(GetDateTimeMK(@me)),顯示出來的時間是格式:2010-10-17 21:40:36,如果您想要其它格式,例如:年月日,那么實現(xiàn)代碼如下:
1
2
3
4
5
6
7
|
[field:pubdate runphp='yes']
if(date("Y-m-d",@me)==date("Y-m-d")){
@me='<fontcolor="#FF0000">'.MyDate('Y-m-d',@me).'</font>';
}else{
@me=MyDate('Y-m-d',@me);
}
[/field:pubdate]
|
再來看下24小時內(nèi)發(fā)表的文章,顯示紅色的代碼,我們直接用 pubdate - time() 做減法后判斷情況輸出結(jié)果。
代碼如下:
1
2
3
4
5
6
7
8
|
[field:pubdate runphp='yes']
$nowTime = time();
if($nowTime - (3600 * 24) < @me){
@me='<fontcolor="#FF0000">'.GetDateTimeMK(@me).'</font>';
}else{
@me=GetDateTimeMK(@me);
}
[/field:pubdate]
|
時間格式與當(dāng)天的修改方法是一樣的。不再贅述。(完)