首先,要在模板中选中“使用程序代码”。
然后,在列表内容模板(list.var)框中,添加如下代码:
复制代码 代码如下:
$newimg='[!--newstime--]';
if(time()-$r[newstime]<=1*24*3600)
{
$newimg='<font color=red>[!--newstime--]</font>';
}
$listtemp='<li><span class=date>'.$newimg.'</span> <a href="[!--titleurl--]" target=_blank>[!--title--]</a> </li>';
完成后的效果如下图:
要点:
1.无论你调用什么变量,最后都要传送给$listtemp;
2.自定义变量要用'.变量.';
3.最后一点,也是最难发现的,php语句最后必须要用分号结尾,否则不解析。切记。