久久精品水蜜桃av综合天堂,久久精品丝袜高跟鞋,精品国产肉丝袜久久,国产一区二区三区色噜噜,黑人video粗暴亚裔

DedeCMS模板Groupthread標(biāo)簽使用教程

來自站長百科
跳轉(zhuǎn)至: 導(dǎo)航、? 搜索

導(dǎo)航: 上一級 | DedeCMS | 首頁 | 帝國CMS | Drupal | PHPCMS | PHP168 | Xoops | Joomla | PowerEasy | SupeSite

DedeCMS程序的Groupthread標(biāo)簽,此標(biāo)簽用于獲取圈子最新發(fā)表的主題,適用范圍:適用于非擴(kuò)展模塊所有模板.

此標(biāo)簽為DEDE5新添加的標(biāo)簽,主要和【Group 標(biāo)簽】一起用來調(diào)用圈子模塊的相關(guān)數(shù)據(jù)的.

一: Groupthread標(biāo)簽使用說明

  1. 語法:
    {dede:groupthread gid=' ' row=' ' orderby=' ' orderway=' '}底層模板{/dede:groupthread}
  2. 屬性:
    [1] gid=' ' 圈子分類,為空或0剛表示所有分類
    [2] row=' ' 條數(shù)
    [3] orderby=' ' 排序條件 默認(rèn) dateline
    [4] orderway=' ' 排序方向 desc 或 asc
  3. 底層模板:
    [field:subject/]主題標(biāo)題 [field:url/]圈子網(wǎng)址(此處為主題地址) [field:groupname/]圈子名稱 [field:icon/]圈子圖標(biāo) [field:groupid/] 圈子ID

二: Groupthread標(biāo)簽測試實(shí)例

本例為在主頁模板文件中測試【Groupthread標(biāo)簽】,將下列代碼加入主頁模板文件中,代碼如下所示:

<div class="leftlist margintop">
			<div class="ptitle"><a href="#">圈子資訊</a></div>
			<div style="width:668px; border:1px solid #ddd; padding-bottom:3px; clear:both;">
			  <dl style="width:666px; margin:1px auto; overflow:hidden;">
			    <dl style="width:400px; margin:10px 0 0 9px; float:left; height:280px; text-align:center; 
line-height:20xp;">
				   <h1 style="font-size:15px; border-bottom:1px dashed #f60;">groupthread標(biāo)簽的使用
</h1><br>
				  {dede:groupthread row='5' gid='0'}
                    <dt style="float:left; line-height:28px;">[<b><a href="[field:groupurl/]" 
target="_blank">[field:groupname/]</a></b>]<span style="margin-left:8px;"><a 
href="[field:url/]">[field:subject/]</a></span> ([field:lastpost function="GetDateMK('@me')"/])</dt>
				  {/dede:groupthread}
				</dl>
			</dl>
			</div>

后臺更新主頁后即可得到如下所示的結(jié)果:

DedeCMS模板Groupthread標(biāo)簽使用教程