dede 首页列表24小时内文章发布时间变红或高亮的方法

大家发现很多网站最新文章或者今天的文章发布时间标红或者高亮显示,就想把自己的也搞成这样,心急却不知道怎么写代码,下面我分享一下自己珍藏的方法分享给大家.

第一种方法,在需要的地方添加即可:

  1. [field:pubdate runphp='yes']
  2. $a="";
  3. $b="";
  4. $c=strftime("%Y年%m月%d日","@me");
  5. $ntime = time();
  6. $oneday = 3600 * 24;
  7. if(($ntime - @me)<$oneday) @me = $a.$c.$b;
  8. else @me =$c;
  9. [/field:pubdate]

PS:$a="";高亮显示的颜色 $oneday = 3600 * 24; 一小时3600秒一天24小时 就是3600X24这么多秒,如果想48小时格式就是 $oneday = 3600 * 48; 根据需要进行编写

第二种方法:

  1. [field:pubdate runphp='yes']
  2. $a="".strftime('%m-%d',@me)."";
  3. $b=strftime('%m-%d',@me);
  4. $ntime = time();
  5. $day3 = 3600 * 24;
  6. if(($ntime - @me) < $day3) @me = $a;
  7. else @me =$b; //开源软件:phpfensi.com
  8. [/field:pubdate]

PS:$a=""这个是颜色代码,red 是红色 自己可以改成需要的颜色即可,只要你懂英文就可以了,具体效果可以参考 http://www.phpfensi.com

第三种方法跟第一种差不多,时间显示格式不一样.

  1. [field:pubdate runphp='yes']
  2. $a="";
  3. $b="";
  4. $c=strftime("%Y-%m-%d","@me");
  5. $ntime = time();
  6. $oneday = 3600 * 24;
  7. if(($ntime - @me)<$oneday) @me = $a.$c.$b;
  8. else @me =$c;
  9. [/field:pubdate]
  10. [field:pubdate function="MyDate('m-d',@me)"/]