[織夢(mèng)教程]織夢(mèng)dede模板圖集在首頁(yè)或列表頁(yè)調(diào)用并自定義顯示幾張圖

閱讀 ?·? 發(fā)布日期 2019-06-24 17:27 ?·? admin
打開(kāi) include/extend.func.php 在最下面加入這個(gè)方法
01 function Getimgurls($aid,$num=4)  
02 {
03     global $dsql;
04     $imgurls $result '';
05     $imgrow $dsql->GetOne( "Select imgurls From `dede_addonimages` where aid='$aid' ");
06     $imgurls $imgrow['imgurls'];
07     if($imgurls != '')
08     {
09         $dtp new DedeTagParse();
10         $dtp->LoadSource($imgurls);
11         $images array();
12         if(is_array($dtp->CTags))
13         {
14             foreach($dtp->CTags as $ctag)
15             {
16                 if($ctag->GetName() == 'img')
17                 {
18                     $row array();
19                     $row['width'] = $ctag->GetAtt('width');
20                     $row['height'] = $ctag->GetAtt('height');
21                     $row['imgsrc'] = trim($ctag->GetInnerText());
22                     $row['text'] = $ctag->GetAtt('text');
23                     $images[] = $row;
24                 }
25             }
26         }
27         $dtp->Clear();
28         $i = 0;
29         foreach($images as $row)
30         {
31             if($i == $numbreak;
32             if($row['imgsrc'] != '')
33             {
34                 $result .= "<li><div class='pic'><a title='{$row['text']}' href='{$row['imgsrc']}'><img src='{$row['imgsrc']}' mid='{$row['imgsrc']}' big='{$row['imgsrc']}' width='70' height='70'></a></div></li>";
35             }
36             $i++;
37         }
38         return $result;
39     }
40 }

請(qǐng)注意
1 <li><div class='pic'><a title='{$row['text']}' href='{$row['imgsrc']}'><img src='{$row['imgsrc']}' mid='{$row['imgsrc']}' big='{$row['imgsrc']}'width='70' height='70'></a></div></li>
上面這段代碼改成符合自己頁(yè)面的html格式。
前臺(tái)模板中調(diào)用代碼如下:
[field:id function=Getimgurls(@me,3)/]
3表示,此篇圖集調(diào)用三張圖片。