因为时间关系,暂时只列举出一些常用标签
当前位置 | {get_location($catid)} |
根据栏目ID获取栏目信息 | {get_category(栏目ID, 获取的键)} 例如获取栏目ID为2的URL地址:{get_category(2, 'pclink')} |
根据栏目ID获取子栏目信息 | {get_childcat(栏目ID)} 获取到的是一维数组,例如: {php $r = get_childcat(3);} |
栏目表(category)字段说明 | |
catid | 栏目id |
catname | 栏目名称 |
modelid | 模型id |
parentid | 父级id |
arrparentid | 父级路径,例如:(0,1) |
arrchildid | 子栏目id集合,例如:(1,2,3) |
catdir | 栏目目录 |
catimg | 栏目图片 |
type | 栏目类型:0普通栏目, 1单页, 2外部链接 |
listorder | 栏目排序 |
target | 栏目打开方式 |
member_publish | 是否会员投稿 |
display | 是否在导航显示 |
pclink | 电脑版地址 |
entitle | 英文标题 |
subtitle | 副标题 |
mobname | 手机版名称 |
category_template | 频道页模板 |
list_template | 列表页模板 |
show_template | 内容页模板 |
seo_title | SEO标题 |
seo_keywords | SEO关键字 |
seo_description | SEO描述 |
调用频道下所有栏目及最新文章 | |
{php $data = get_childcat($catid);} {loop $data $v} <div class="lang-content-box lang-img-list"> <div class="lang-title"> <h2>{$v[catname]}</h2> <span class="lang-title-right"><a href="{$v[pclink]}">>>更多</a></span> </div> <ul> {m:lists field="title,thumb,url,color" catid="$v['catid']" limit="8"} {loop $data $v} <li> <a href="{$v[url]}"> <i><img src="{get_thumb($v['thumb'])}" alt="{$v[title]}" title="{$v[title]}"></i> <p>{title_color($v['title'], $v['color'])}</p> </a> </li> {/loop} </ul> </div> {/loop} |