標簽說明:用於相冊數據輸出
輸出格式:
{%get name=photo class=參數...%}
...
{%/get%}
參數說明:
參數 | 是否必填 | 說明 | 備注 |
did | 必填 | 指定內容ID | 請在網站後台,“內容” 〉“內容管理”中查看相應的 |
max | 可選 | 輸出數量 | 請填寫整數值,如未填寫,則默認為10條 |
實例一:調用相冊版塊ID為1、讀取數量為5條的圖片
{%get name=photo class=did:1,max:5%}
{%forlist from=$array key=i%}
<img src=”{%$array[i].picfile%}” title=”{%$array[i].picname%}>
{%/forlist%}
{%/get%}