{template "content","header"}
{dede:include filename="head.htm"/}
-------------------------
输出字符串 and数组
{var_dump($c)}
----------------------
================================================================
引入头部: = {template "content","header"}
{CSS_PATH} = http://localhost/phpcms/statics/css/
{APP_PATH} = http://localhost/phpcms/
==================================================================
{template "content","header"} ---------- 调用根目录下phpcms emplatecontentheader文件
{CHARSET} -------------------------------------字符集 (gbk或者utf-8)
{if isset($SEO['title']) && !empty($SEO['title'])}
{$SEO['title']}{/if}
{$SEO['site_title']}
{$SEO['keyword']}
{$SEO['description']}
-----------------------------------标题和标题seo优化
{CSS_PATH} -----------------------------------地址替换为根目录下staticscss
{JS_PATH}--------------------------------------地址替换为根目录下staticsjs
{pc:content action="position" posid="9" order="id" num="10" cache="3600"}
pc标签{pc:content 参数名="参数值"参数名="参数值"参数名="参数值"}
{loop $data $k $v}
<li><a href="{$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}-----------------项目地址
{get_siteid()}----------------
{IMG_PATH}-----------------
action="hits" 排行,热点等
action="lists" 主要用于列表等。
catid="$catid" 当前栏目ID 指定数字,即为指定的栏目
num="" 调用文章的数量
order="id DESC" 按ID降序排列
order="id ASC" 按ID升序排列
order="views DESC"
sort=""
thumb="1" 缩略图
return=""
page="$page" 需要分页
每当列表几行的时候出现一次这个
{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>
<script language="JavaScript" src="{APP_PATH}api.php?op=count&id={$id}&modelid={$modelid}"></script>
网站首页------{siteurl($siteid)}
当前位置------{catpos($catid)}
栏目名称------{$CAT[catname]}
栏目拼音------{$CAT[letter]}
栏目链接------{$CAT[url]}
父栏目名称------{$CATEGORYS[$CAT[parentid]][catname]}
父栏目链接------{$CATEGORYS[$CAT[parentid]][url]}
上上级栏目名称------{$CATEGORYS[$CATEGORYS[$CAT[parentid]][parentid]][catname]}
上上级栏目链接------{$CATEGORYS[$CATEGORYS[$CAT[parentid]][parentid]][url]}
一级父栏目列表
{pc:content action="category" catid="0" num="34" siteid="$siteid" order="listorder ASC"}
{loop $data $r}
<li><a href="{$r[url]}">{$r[catname]}</a></li>
{/loop}
{/pc}
同级栏目列表
{pc:content action="category" catid="$parentid" num="12" siteid="$siteid" order="listorder ASC"}
{loop $data $r}
<li><a href="{$r[url]}">{$r[catname]}</a></li>
{/loop}
{/pc}
组图列表
{loop $photos $r}
<li><a href="{$r[url]}"><img src="{thumb($r[url], 75, 45, 0)}" alt="{$r[alt]}" /></a></li>
{/loop}
注释:其中$photos为自定义组图字段,{$r[url]}为图片地址,{thumb($r[url], 75, 45, 0)}为图片缩略图,{$r[alt]}为图片描述
==================================================================================================
获取顶级栏目
{pc:content action="category" catid="$catid" num="7" siteid="$siteid" order="listorder ASC"}
<!-- {var_dump($data)} -->
{loop $data $c}
<li onmouseover="nav_show(this)" onmouseout="nav_didden(this)">
<a href="{$c['url']}" >{$c['catname']}</a>
<ul class="deng">
{loop subcat($c['catid']) $c2}
{var_dump($c)}
<!-- <li><a href="#">{$c2['catname']}</a></li> -->
{/loop}
</ul>
</li>
{/loop}
{/pc}
==============================================================================================================
获取当前栏目图片:{$CATEGORYS[$catid][description]}
{catpos($catid)} 显示文章位置导航
{$CATEGORYS[$catid][url]} 显示当前栏目链接
{$CATEGORYS[$catid][catname]} 显示当前栏目名称
获取所在catid的信息:内容
{pc:content action="lists" catid="32" num="5" order="id ASC" return="info"}
{loop $info $i}
<li><a href="#" target="_blank"><img src="{$i[thumb]}" width="300" height="300" alt="{$i[title]}" /></a></li>
{/loop}
{/pc}
-----------------------------------------------------------------------------------------
{pc:content action="lists" catid="32" num="5" order="id ASC" return="info"}
{loop $info $i}
<li><a href="#" target="_blank"><img src="{$i[thumb]}" width="300" height="300" alt="{$i[title]}" /></a></li>
{/loop}
{/pc}
------------------------------------------------------------------------------------------------------
PHPCMS_分页
{pc:content action="lists" catid="$catid" num="7" order="id ASC" return="info" page="$page"}
{loop $info $i}
{/loop}
{/pc}
<div id="pages" class="page">{$pages}</div>
.page{
100%;
height: auto;
overflow: hidden;
margin: 25px 0px 0px;
text-align: center;
}
.page a{
height: 20px;
line-height: 26px;
auto;
border: 1px solid #e0e0e0;
background: #fff;
color: #aaaaaa;
margin: 0 3px;
padding: 2px 5px;
}
.page a:hover{
background: #1d4a9f;
color: #ffffff;
}
.page span {
margin: 0 3px;
padding: 2px 5px;
background: #1d4a9f;
color: #fff;
border: 1px solid #1d4a9f;
}
-------------------------------------------------------------------------------------------------------
<!-- 友情链接 -->
{pc:link action="type_list" siteid="$siteid" linktype="1" order="listorder DESC" num="8" return="pic_link"}
{loop $pic_link $l}
<a href="#">{$l[name]}</a>
{/loop}
{/pc}
==============================================================================================================
<!-- 左侧标题 -->
{pc:content action="category" catid="$catid" num="25" siteid="$siteid" order="listorder ASC"}
<div>{$catname}</div>
<ul>
{loop $data $r}
<!-- {var_dump($data)} -->
<li><a href="{$r[url]}">{$r[catname]}</a></li>
{/loop}
</ul>
{/pc}