SHLCMS 首页图片dt picture标签调用说明

来自站长百科
跳转至: 导航、​ 搜索

导航: 上一页|SHLCMS

图片首页调用

dt_picture($channelId,$n,$strcount=0,$style=0,$isellipsis=true)

  • 参数说明       
  1. $channelId:调用频道或栏目ID;
  2. $n:调用图片显示条数;
  3. $strcount:指定标题的显示汉字字符数量;
  4. $style:调用文件名为picture_0、picture_1、picture_2……的php样式文件,其保存于模板下的index文件夹下,表示图片的不同显示样式,$style为图片不同显示样式文件的数字后缀。 
  5. $isEllipsis:指定专辑字符末尾是否显示省略号,当$isEllipsis为false或$isEllipsis为true且$strcount大于标题字数时不显示省略号,当 $isEllipsis为true且$strcount小于标题字数时则显示省略号。
  • 示例   
  
<div id="indexProShow"><h2 class="indexColumTitle">图片新闻</h2><ul><?php echo dt_picture(9,3,6,0,false) ?>/ul></div>

会生成以下列表如图:

SHLCMS Tag7.jpg
  • 备注      

如上图所示首页需要调用栏目ID为9的图文新闻,首页显示产品数量为3,显示字符为6,不显示省略号,调用样式文件picture_0.php保存在范本下的index文件夹下,那么只须在index.php文件中找到“图片新闻”,然后在其下添上标签:dt_picture(9,3,.6,0,false)。

而保存于范本index文件夹下picture_0.php代码也很简单,如下所示:

<li><a href="/?p=<?php echo $o->channelId?>&a=view&r=<?php $o->id?>">
<img src="<?php echo $o->spicture?>"alt="<?php echo $o->title?>" border="0" /><span><?php echo $o->title?></span></a></li>

相关条目[ ]

参考来源[ ]