织梦DedeCMS在当天发表的文章显示红色、添加new图标的问题,主要增加了真正的当天显示红色,而不是24小时内的文章显示红色。
真正的“当天”显示红色,实现代码:
[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]
其中<font color=”#FF0000″>‘.MyDate(‘Y-m-d’,@me).’</font>‘;即用到了红色标签,
		24小时内发表的文章,显示红色的代码,我们直接用 pubdate – time() 做减法后判断情况输出结果。 
	
		代码如下: 
	
[field:pubdate runphp='yes']
$nowTime = time();
if($nowTime - (3600 * 24) < @me){
@me='<font color="#FF0000">'.GetDateTimeMK(@me).'</font>';
}else{
@me=GetDateTimeMK(@me);
}
[/field:pubdate]
已经完美解决,当天日期显示为红色!

 云站友
云站友









评论前必须登录!
立即登录 注册