当前位置: 首页 > 站长资讯 > 正文页面

织梦DEDECMS中让近三天发布的文章显示红色日期或加上new字或小图

为了在网站上显示更新的内容引起访问人的注意,可以让把最近三天的文章显示为红色.下面来看一下代码59l网站目录_网站网址收录与提交入口

给近三天(或当天)发布的文章显示红色日期或加上new字或new小图片等。59l网站目录_网站网址收录与提交入口

都是围绕pubdate做文章,写扩展的。59l网站目录_网站网址收录与提交入口

第2、3要注意的问题是:如:"<img src='new.gif' />中不能用双引号,否则不行。59l网站目录_网站网址收录与提交入口

如果要给当天的加,把 3600 * 24 * 3 改为 3600 * 24  即可。59l网站目录_网站网址收录与提交入口

1、红色的日期59l网站目录_网站网址收录与提交入口

代码如下:59l网站目录_网站网址收录与提交入口

[field:pubdate runphp='yes']59l网站目录_网站网址收录与提交入口

$a="<font color=red>".strftime('%m-%d',@me)."</font>";59l网站目录_网站网址收录与提交入口

$b=strftime('%m-%d',@me);59l网站目录_网站网址收录与提交入口

$ntime = time();59l网站目录_网站网址收录与提交入口

$day3 = 3600 * 24 * 3;59l网站目录_网站网址收录与提交入口

if(($ntime - @me) < $day3) @me = $a;59l网站目录_网站网址收录与提交入口

else @me =$b;59l网站目录_网站网址收录与提交入口

[/field:pubdate]59l网站目录_网站网址收录与提交入口

2、红色的(new)59l网站目录_网站网址收录与提交入口

代码如下:59l网站目录_网站网址收录与提交入口

[field:pubdate runphp='yes']59l网站目录_网站网址收录与提交入口

$aa=strftime('%m-%d',@me);59l网站目录_网站网址收录与提交入口

$ntime = time();59l网站目录_网站网址收录与提交入口

$tagtime = @me;59l网站目录_网站网址收录与提交入口

$day3 = 3600 * 24 * 3;59l网站目录_网站网址收录与提交入口

if($tagtime > $ntime-$day3) @me = "<font color='red'>(new)</font>";59l网站目录_网站网址收录与提交入口

else @me = $aa;59l网站目录_网站网址收录与提交入口

[/field:pubdate]59l网站目录_网站网址收录与提交入口

3、加new.gif小图片59l网站目录_网站网址收录与提交入口

代码如下:59l网站目录_网站网址收录与提交入口

[field:pubdate runphp='yes']59l网站目录_网站网址收录与提交入口

$aa=strftime('%m-%d',@me);59l网站目录_网站网址收录与提交入口

$ntime = time();59l网站目录_网站网址收录与提交入口

$tagtime = @me;59l网站目录_网站网址收录与提交入口

$day3 = 3600 * 24 * 3;59l网站目录_网站网址收录与提交入口

if($tagtime > $ntime-$day3) @me = "<img src='new.gif' />".$aa;59l网站目录_网站网址收录与提交入口

else @me = $aa;59l网站目录_网站网址收录与提交入口

[/field:pubdate]59l网站目录_网站网址收录与提交入口

以上就是本文章的内容,希望对大家有所帮助。 59l网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章