大家发现很多网站最新文章或者今天的文章发布时间标红或者高亮显示,就想把自己的也搞成这样,心急却不知道怎么写代码,下面我分享一下自己珍藏的方法分享给大家.
第一种方法,在需要的地方添加即可:
- [field:pubdate runphp='yes']
- $a="";
- $b="";
- $c=strftime("%Y年%m月%d日","@me");
- $ntime = time();
- $oneday = 3600 * 24;
- if(($ntime - @me)<$oneday) @me = $a.$c.$b;
- else @me =$c;
- [/field:pubdate]
PS:$a="";高亮显示的颜色 $oneday = 3600 * 24; 一小时3600秒一天24小时 就是3600X24这么多秒,如果想48小时格式就是 $oneday = 3600 * 48; 根据需要进行编写
第二种方法:
- [field:pubdate runphp='yes']
- $a="".strftime('%m-%d',@me)."";
- $b=strftime('%m-%d',@me);
- $ntime = time();
- $day3 = 3600 * 24;
- if(($ntime - @me) < $day3) @me = $a;
- else @me =$b; //开源软件:Vevb.com
- [/field:pubdate]
PS:$a=""这个是颜色代码,red 是红色 自己可以改成需要的颜色即可,只要你懂英文就可以了,具体效果可以参考 http://www.Vevb.com
第三种方法跟第一种差不多,时间显示格式不一样.
- [field:pubdate runphp='yes']
- $a="";
- $b="";
- $c=strftime("%Y-%m-%d","@me");
- $ntime = time();
- $oneday = 3600 * 24;
- if(($ntime - @me)<$oneday) @me = $a.$c.$b;
- else @me =$c;
- [/field:pubdate]
- [field:pubdate function="MyDate('m-d',@me)"/]
新闻热点
疑难解答