phpCMSv9模板字段调用小总结

内容页的话.直接写{$xyz}
列表页的话.要查询这个模型的表.比如是新闻模型,就要查询phpcms_c_news这个表.然后{$r[xyz]}

文章缩略图:
<a href=”{$PHPCMS[siteurl]}{$r[url]}”><img src=”{$PHPCMS[siteurl]}{thumb($r[thumb], $width, $height)}” width=”{$width}” height=”{$height}” alt=”{$r[title]}” border=”0″/></a>

文章标题:
<a href=”{$PHPCMS[siteurl]}{$r[url]}”>{str_cut($r[title], $titlelen)}</a>

文章简介:
<a href=”{$PHPCMS[siteurl]}{$r[url]}”>{str_cut($r[description],800)}</a>

文章截取:
{str_cut(strip_tags($r[content]),340)}

您当前的位置
<a href=”{$PHPCMS[siteurl]}”>首页</a> > <a href=”{$PHPCMS[siteurl]}news”>新闻资讯</a> > <a href=”{$CATEGORY[$catid][url]}” title=”{$CATEGORY[$catid][catname]}” target=”_self”>{$CATEGORY[$catid][catname]}</a>

{$title} –文章标题
{$url} —-文章url
{$CATEGORY[$catid][catname]}  —文章所在栏目的名称
{$CATEGORY[$catid][url]}           —-文章所在栏目的url
<? $flmid=$CATEGORY[$catid][parentid]?>  调用文章所在栏目的父栏目ID
{$CATEGORY[$flmid][catname]}   —文章所在栏目的父栏目的名称
{$CATEGORY[$flmid][url]}           —-文章所在栏目的父栏目的URL

文章分页:
{if $pages}<div id=”pages”>{$pages}</div>{/if}

文章日期:
{if $showdate}{date(‘Y-m-d’,$r[updatetime])}{/if}

常用变量表示:$cid

站点链接:{$PHPCMS[siteurl]}{SKIN_PATH}

模版路径:{SKIN_PATH}

自定义字段调用:{$r[***]} ***就是你自定义的字段

({date(‘Y-m-d h:i:s’,$r[updatetime])}) phpcms时间代码

<a href=”{$r[url]}” target=”{$target}”>{str_cut($r[title], $titlelen,”)}</a>  PHPCMS标题代码

{str_cut($r[description], $introlen)} phpcms标题简介代码

<a target=”{$target}” href=”{$r[url]}”><img width=”{$width}” height=”{$height}” src=”{thumb($r[thumb], $width, $height)}” alt=”{$r[title]}”></a>  phpcms图片代码

{loop $data $n $r}内容{/loop}  phpcms循环代码

Published by 小车

网站技术工人