幫助文檔
bann廣告內容輸出
標簽說明:用于廣告鏈接內容的輸出
輸出格式:
{%get name=bann class=參數...%}
...
{%/get%}
循環變量標簽:$array
參數說明:
參數 | 是否必填 | 說明 | 備注 |
atid | 必填 | 所屬廣告位ID? | 請在網站后臺,“組件” 〉 “廣告管理”中查看相應的廣告位ID? |
adtype | 可選 | 廣告類型 | 1:圖片廣告 2:動畫廣告 3:文字廣告 如未填寫,則默認為1 |
max | 可選 | 讀取數量? | 請填寫整數值,如未填寫,則默認為10條? |
?
實例一:調用廣告位為1的文字鏈接(友情鏈接)
{%get name=bann class=atid:1,adtype:3,max:10%}
? ? ? ? <ul>
?? ? ? ? {%forlist from=$array key=i%}
? ? ? ? ? ? ? ? ?<li>?<a title="{%$array[i].title%}" target="_blank" href="{%$array[i].url%}">{%$array[i].title%}</a>?</li>
?? ? ? ? {%/forlist%}
? ? ? ? </ul>
{%/get%}
?
實例二:調用廣告位為2的圖片鏈接
{%get name=bann class=atid:2,adtype:1,max:2%}
? ? ? ? <ul>
? ? ? ? {%forlist from=$array key=i%}
? ? ? ? ? ? ? ? ?<li><a title="{%$array[i].title%}" target="_blank" href="{%$array[i].url%}"><img alt="{%$array[i].title%}" src="{%$rootdir%}{%$array[i].filename%}"></a>?</li>
? ? ? ? {%/forlist%}
? ? ? ? </ul>
{%/get%}
?
實例三:調用廣告位為3的動畫鏈接
{%get name=bann class=atid:3,adtype:2,max:1%}
? ? ? ? {%forlist from=$array key=i%}
? ? ? ? ? ? ? ? ?<object id="flash1" data="{%$rootdir%}{%$array[i].filename%}" type="application/x-shockwave-flash"?height="200" width="200">
?? ? ? ? ? ? ? ? ? ? ? ? ?<param name="movie" value="{%$rootdir%}{%$array[i].filename%}" />
? ? ? ? ? ? ? ? </object>
? ? ? ? {%/forlist%}
{%/get%}
- 上一篇:read直接輸出指定內容
- 下一篇:typelist內容分類輸出