1.子栏目列表:
#foreach($channel in $cms.getChildren($curChannel))
$channel.title
#end
2.文章的相关属性:
标题: $curArticle.name
副标题: $!{curArticle.viceTitle}
内容: $curArticle.content
摘要: $!{curArticle.summary}
关键字: $!{curArticle.keyword}
来源: $!{curArticle.source}
作者: $!{curArticle.author}
级别: $!{curArticle.grade}
发布日期:$cms.format($curArticle.publishDate) --年-月-日
$cms.format($curArticle.publishDate,"yyyy-MM-dd HH:mm:ss") --年-月-日 时:分:秒
$cms.format($curArticle.publishDate,"MM-dd") --月-日
$cms.format($curArticle.publishDate,"HH:mm:ss") --时:分:秒
扩展属性:$!{curArticle.getProperty("time")} 注:扩展属性中字段填写在内容类型中定义的字段名
3.跳转到第一个下级子栏目
#foreach($channel in $cms.getChildren($curChannel,0,1))
#end
4.栏目主菜单:
#foreach($channel in $cms.getTopChildren($rootChannel))
$channel.title
#end
5.判断是否推荐栏目:
#if($curChannel.isSuggest == 1)
6.取当前栏目的前5个子栏目:
#foreach($channel in $cms.getChildren($curChannel,1,5))
$channel.title |
#end
7. 注:$cms.format($content.publishDate)为日期的格式化,可以分为以下几种格式
年-月-日 时:分 $cms.format($article.publishDate,"yyyy-MM-dd hh:mm")
年-月-日 $cms.format($article.publishDate)
月-日 $cms.format($article.publishDate,"MM-dd")
时:分:秒 $cms.format($article.publishDate,"hh:mm:ss")
8.关联模板使用办法(例:子站关联主站某页面)
1>.首先打开主站后台,新建关联模板。
2>设置当前栏目的关联模板为新建的关联模板
3>预览效果为想要获取的那一部分(包含样式)(模板写法:头部和主站当前栏目一致。正文代码为想要获取的那一部分的置标)发布栏目
4>.回到子站,新建模板,除想要替换的部分去除外。其他保持依旧。
5>.添加代码到想要替换的那一部分:
src为生成的管理模板文件。可直接访问查看效果。后面长度和宽度可调节
把新建的模板改为当前子站栏目。
完成
9.根据文章类型判断
文章的状态码
撤销6
新稿1
己编2
已签3
己发7
文章类型
type = 0; //类型为链接
type = 1; //类型为文章
type = 2; //类型为产品
type = 3; //类型为文档
type = 4; //类型为转发链接
type = 5; //类型为转发复用
type = 6; //类型为数据库表挂接
10.分页跳转
分页-跳转
当页码不能跳转的时候试试把“转到”后面的改成