EXCMS标签 digglist顶踩内容列表
来自站长百科
导航:返回上一页
EXCMS模板标签介绍,“digglist顶踩内容列表”:
标签名称:digglist
功能说明:显示顶踩信息列表
适用范围:全局模板
基本语法:{digglist row= titlelen= infolen= order= modelid= channelid= includesub=}{digglistelse}{/digglist}
属性说明:
名称 | 默认值 | 是否必填 | 描述 |
---|---|---|---|
row | 所有 | 否 | 显示顶踩信息数量。 |
titlelen | 所有 | 否 | 内容标题显示长度 |
infolen | 所有 | 否 | 表示内容简介长度 |
order | all | 否 | 排序方式 ,all总排行day当天排行week周排行month月排行。 |
modelid | 否 | 否 | 表示模型id。 |
channelid | 否 | 否 | 表示栏目id,多个栏目ID用逗号隔开。 |
includesub | 否 | 否 | 表示是否包含子栏目。 |
底层模板字段:digglist标签支持内容数据表的所有字段,如下 |
---|
contentid, modelid, channelid, channelcross, title, shorttitle, metatitle, keywords, tags, description, source, author, isthumb, thumb, titleatt, likekeywords, likecontentid, forward, template, filename, ishtml, checked, userid, username, publishdate, modifieddate, createddate, distillate, recommend, credits, comment, sort, path |
支持内容数据表的所有字段以外,系统提供了一些附加字段 |
---|
url, encrypt_contentid, info, fulltitle, channel |
digglist标签支持顶踩数据库表所有字段,如下
字段名称 | 说明 |
---|---|
表示顶数量。 | |
trample | 表示踩数量。 |
daydigg | 表示今天顶数量。 |
daytrample | 表示今天踩数量。 |
weekdigg | 表示本周顶数量。 |
weektrample | 表示本周踩数量。 |
monthdigg | 表示本月顶数量。 |
monthtrample | 表示本月踩数量。 |
updatetime | 表示更新时间。 |
例子:显示最近一周前20条内容。
1 <!-- 显示最近一周顶的内容列表 --> 2 {digglist row=20 order='week'} 3 4 {loop item=cnt} 5 <li><a href="{$cnt.href}" target="_blank">{$cnt.title}</a><span class="dig"><a href="{$cnt.href}" target="_blank">{$cnt.digg} </a></span></li> 6 {/loop} 7 8 {/digglist} 9 <!-- 显示最近一周顶的内容列表 -->
上例输出结果: