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

dedecms如何给内容列表文章添加hot、new小图标?

再用织梦建站的时候,常常需要要在列表页添加前两天的文章后面添加个new小图片,那怎么实现的?B5教程网和你分享一段代码。如下:sDA网站目录_网站网址收录与提交入口

红色的日期:sDA网站目录_网站网址收录与提交入口

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

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

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

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

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

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

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

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

红色的(new):sDA网站目录_网站网址收录与提交入口

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

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

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

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

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

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

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

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

加new.gif小图片:sDA网站目录_网站网址收录与提交入口

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

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

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

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

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

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

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

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

“hot”添加方法网:sDA网站目录_网站网址收录与提交入口

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

if(@me > 1000 )@me = ”<span class=’hot_ico’></span>”;sDA网站目录_网站网址收录与提交入口

else @me = “”;sDA网站目录_网站网址收录与提交入口

[/field:click]sDA网站目录_网站网址收录与提交入口

这里点击率设定为1000,当“click”大于1000时,添加span标签,然后用CSS将其定位到合适的地方。sDA网站目录_网站网址收录与提交入口

 sDA网站目录_网站网址收录与提交入口

  

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

相关文章