帝国CMS在列表页中,只要信息没有标题图片,就不显示,有标题图片才显示,这样没标题图片的情况下,就不会显示一个X框框。
list.var中勾选 使用程序代码
示例代码:
1
|
if ( empty ( $r [titlepic])){ $r [titlepic]= '/images/img.gif' ;} $listtemp = '<li><a href="[!---titleurl--]"><img src="[!---titlepic--]"></a></li>' ; |
说明:$r[titlepic]为标题图片字段变量。$listtemp为模板内容变量。
也不一定是标题图片,其它字段也可以。
示例代码,eweima 字段
1
|
$img = '<div class="a">字段为空时显示这里</div>' ; if ( empty ( $r [eweima])){ $img = '<div class="a"><div class="bbb">[!---eweima--]</div></div>' ;} $listtemp = '' . $img . '' ; |