zdcms在循环文章列表中调用当前文章所属栏目名称和链接的写法

zdcms在循环文章列表中调用当前文章所属栏目名称和链接的写法。通常用于首页的文章列表,显示当前文章所属的栏目名称和url时使用。具体看下面的代码;

{module module=news  catid=$catid   page=1 urlrule=index.php?page=[page]} 文章列表开始,开启分页并设置分页url规则
{dr_cat_value("news",$t.catid, 'name')} 所属栏目名称
{dr_cat_value("news",$t.catid, 'url')}  所属栏目链接
{$t.title} 文章标题
{$t.url}   文章链接
{dr_thumb($t.thumb, 220, 150)}  文章缩略图并设置尺寸为220*150
{$t.comments} 评论数
{dr_strcut($t['description'], 400, '...')} 简介并截取400字
{$t.hits}     点击数
{$t.updatetime}  更新时间
{/module}   文章列表结束


评论