基本调用:
- {template "content","header"} ---------- 调用根目录下phpcms/template/content/header文件
- {CHARSET} ----------------------字符集 (gbk或者utf-8)
- {if isset($SEO['title']) && !emptyempty($SEO['title'])}------------------标题和标题seo优化
- {$SEO['title']}{/if}------------------标题和标题seo优化
- {$SEO['site_title']}------------------标题和标题seo优化
- {$SEO['keyword']}------------------标题和标题seo优化
- {$SEO['description']}------------------标题和标题seo优化
- {CSS_PATH}--------------地址替换为根目录下/statics/css
- {JS_PATH}--------------地址替换为根目录下/statics/js
- /*基本结构*/
- {pc:content action="position" posid="9" order="id" num="10" cache="3600"}
- pc标签{pc:content 参数名="参数值"参数名="参数值"参数名="参数值"}
- {loop $data $k $v}
- <li><a href="http://xzl52199.blog.163.com/blog/{$v[url]}">{$v[title]}</a></li>
- {/loop}
pc标签值
- action="position"-------------对话框的类型=“内容推荐位列表”
- posid="9"--------------------推荐位ID=“9”
- order="id"--------------------排序类型=“id”
- num="10" -------------------数据调用数量=“10”
- cache="3600"----------------缓存="3600"毫秒
- {APP_PATH}-----------------项目地址
- action="hits" 排行,热点等
- action="lists" 主要用于列表等。
- catid="$catid" 当前栏目ID 指定数字,即为指定的栏目
- num="" 调用文章的数量
- order="id DESC" 按ID降序排列
- order="id ASC" 按ID升序排列
- order="views DESC"
- thumb="1" 缩略图
- page="$page" 需要分页
if判断第几行:{if $num%2==0}{/if}
循环标签:
- ------{loop $data $r} {/loop}
- ------{loop $info $r} {/loop}
日期:{date('Y-m-d H:i:s',$r[inputtime])}
文章链接:{$r[url]}
文章标题:{$r[title]}
标题截取:{str_cut($r[title],40,'...')}
缩略图:
- /*loop是info的时候用*/ {thumb($r[thumb],110,0)}
- /*loop是data的时候用*/ {thumb($v[thumb],90,0)}
分页标签:{$pages}
文章页标签:
- 标题------{$title}
- 内容------{$content}
- 日期------{$inputtime}
- 来源------{$copyfrom}
- 点击数------<span id="hits"></span> <pre name="code" class="php"> 调用js------<script language="JavaScript" src="http://xzl52199.blog.163.com/blog/{APP_PATH}api.php?op=count&id={$id}&modelid={$modelid}"></script></pre> //开源软件:Vevb.com
网站首页:{siteurl($siteid)}
当前位置:{catpos($catid)}
栏目名称:{$CAT[catname]}
栏目拼音:{$CAT[letter]}
栏目链接:
<pre name="code" class="php"><span style="font-family:Tahoma; color:#333333">{$CAT[url]}</span></pre>
父栏目名称:
<pre name="code" class="php"><span style="font-family:Tahoma; color:#333333">{$CATEGORYS[$CAT[parentid]][catname]}</span></pre>
父栏目链接:
{$CATEGORYS[$CAT[parentid]][url]}
上上级栏目名称上上级栏目链接:
<span style="font-family:Tahoma; color:#333333">{$CATEGORYS[$CATEGORYS[$CAT[parentid]][parentid]][url]}</span>
一级父栏目列表:
- <pre name="code" class="php">{pc:content action="category" catid="0" num="34" siteid="$siteid" order="listorder ASC"}
- {loop $data $r}
- <li><a href="http://xzl52199.blog.163.com/blog/{$r[url]}">{$r[catname]}</a></li>
- {/loop}
- {/pc}
- </pre>
同级栏目列表:
- <span style="font-family:Tahoma; color:#333333">{pc:content action="category" catid="$parentid" num="12" siteid="$siteid" order="listorder ASC"}
- <span> </span>{loop $data $r}
- <span> </span><li><a href="http://blog.csdn.net/lee_magnum/{$r[url]}">{$r[catname]}</a></li>
- {/loop}
- {/pc}</span>
组图列表:
- {loop $photos $r}
- <li>
- <a href="http://xzl52199.blog.163.com/blog/{$r[url]}">
- <img src="http://xzl52199.blog.163.com/blog/{thumb($r[url], 75, 45, 0)}" alt="{$r[alt]}" />
- </a>
- </li>
- {/loop}
注释:其中$photos为自定义组图字段,{$r[url]}为图片地址,{thumb($r[url],75,45,0)}为图片缩略图,{$r[alt]}为图片描述.
新闻热点
疑难解答