首頁調(diào)用本站的最新發(fā)表標(biāo)簽:
最新發(fā)表
{dede:arclist titlelen='60' noflag='h' row='13'}
[field:pubdate function="MyDate('m-d',@me)"/][field:title/]
{/dede:arclist}
下面的代碼是我們修改之后24小時(shí)內(nèi)標(biāo)題紅色的調(diào)用標(biāo)簽:
最新發(fā)表
{dede:arclist titlelen='60' noflag='h' row='13'}
[field:pubdate runphp='yes'] $a=""; $d=""; $b=""; $c=strftime("%m-%d","@me"); $ntime = time(); $oneday = 3600 * 24; if(($ntime - @me)<$oneday) @me = $a.$c.$b; else @me = $d.$c.$b; [/field:pubdate] [field:title/]
{/dede:arclist}
這樣就可以了,很多人不會(huì)去用DEDECMS默認(rèn)模板吧,所以我這里調(diào)用最新標(biāo)簽跟你的是不一樣的,如果你的首頁是用的默認(rèn)模板的話,只需要將以下代碼:
[field:pubdate function="MyDate('m-d',@me)"/]
替換成以下代碼:
[field:pubdate runphp='yes']
$a="";
$d="";
$b="";
$c=strftime("%m-%d","@me");
$ntime = time();
$oneday = 3600 * 24;
if(($ntime - @me)<$oneday) @me = $a.$c.$b;
else @me = $d.$c.$b;
[/field:pubdate]
|
這樣就實(shí)現(xiàn)了首頁最新發(fā)表的文章在24小時(shí)內(nèi)顯示紅色