基本调用
常见获取栏目名称和获取上级栏目名称
当前栏目id: {$catid}
当前栏目名: {$CATEGORYS[$catid][catname]}
当前栏目目录名: {$CATEGORYS[$catid][catdir]}
当前栏目url: {$CATEGORYS[$catid][url]}
当前栏目描述:{$CATEGORYS[$catid][description]}
当前栏目图片:{$CATEGORYS[$catid][image]}"
当前栏目的内容数: {$CATEGORYS[$catid][items]}
当前栏目的点击数: {$CATEGORYS[$catid][hits]}
当前栏目的上级栏目id: {$CATEGORYS[$catid][parentid]}
父级栏目id: $CAT[parentid];
父级栏目的所有子栏目id $CATEGORYS[$CAT[catid]][arrchildid];
其他字段:只需要改动XXX:{$CATEGORYS[$top_parentid][XXX]}
{$CATEGORYS[$top_parentid][catname]} //顶级父栏目名称
{$CATEGORYS[$top_parentid][url]} //顶级父栏目url
{$CATEGORYS[$top_parentid][XXX]} //顶级父栏目的相关字段值
{$CATEGORYS[$CAT[parentid]][catname]} //父栏目名称
{$CATEGORYS[$CAT[parentid]][url]} //父栏目url
{$new_pages} 新分页代码,修改方法参考 《phpcms新增分页样式修改》
判断是否有下级栏目?
{if $r[child]} 有子栏目 {else} 无子栏目 {/if}
{/loop}
sql万能语句可以调用指定内容
{pc:get sql="select * from v9_news as a,v9_news_data as b where a.id=b.id and catid=34 and status=99 order by a.id desc"} {loop $data $v} <li><a href="{$v['url']}" target="_blank"><img src="{$v[thumb]}" width="146" height="117" /></a></li> {/loop} {/pc} {pc:get sql="select * from v9_news where catid=10 and status=99 order by updatetime desc" num="5" start="23"} {loop $data $rs} <a href="{$rs['url']}" title="{$rs['title']}" target="_blank">{$rs['title']}</a> {/loop} {/pc}
pc标签值
缩略图
点击数------<span id="hits"></span>
调用js
<script language="JavaScript" src="{APP_PATH}api.php?op=count&id={$id}&modelid={$modelid}"></script>
当前位置 {catpos($catid)}
栏目名称 {$CAT[catname]}
栏目拼音 {$CAT[letter]}
栏目链接 {$CAT[url]}
父栏目名称 {$CATEGORYS[$CAT[parentid]][catname]}
父栏目链接 {$CATEGORYS[$CAT[parentid]][url]}
上上级栏目名称上上级栏目链接 {$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"} <span> </span>{loop $data $r} <span> </span><li><a href="http://miaojingyun.com/{$r[url]}">{$r[catname]}</a></li> {/loop} {/pc}
{loop $photos $r} <li> <a href="http://miaojingyun.com/{$r[url]}"> <img src="http://miaojingyun.com/{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="position" posid="2" order="listorder DESC" thumb="1" moreinfo="1" num="5"} <ul class="swiper-slide list_area"> {php $num=0} {loop $data $r} {php $num++} {if $num==1} <li><a href="{$r['url']}" class="open_box"> <div class="info_wrap"> <div class="top_text"><span class="best_text">BEST</span><span class="list_num">0{$num}</span></div> <p class="prd_name">{$r['title']}</p> <dl class="prd_area"> <dt>型号</dt> <dd class="prd_NO">{$r[pro_no]}</dd> </dl> <dl class="prd_area"> <dt>特点</dt> <dd class="prd_info">{$r['pro_info']}</dd> </dl> </div> <div class="img_wrap"><img src="{$r['thumb']}" alt="{$r['title']}" class="load_img"></div> </a></li> {else} <li><a href="{$r['url']}" class="open_box"> <div class="top_text"><span class="best_text">BEST</span><span class="list_num">0{$num}</span></div> <div class="img_wrap"><img src="{$r['thumb']}" alt="{$r['title']}" class="load_img"></div> <div class="info_wrap"> <p class="prd_name">{$r['title']}</p> <dl class="prd_area"> <dt>型号</dt> <dd class="prd_NO">{$r[pro_no]}</dd> </dl> <dl class="prd_area"> <dt>特点</dt> <dd class="prd_info">{$r['pro_info']}</dd> </dl> </div> </a></li> {/if} {/loop} </ul> {/pc}
相关文章
PHPCMS 统计栏目下子栏目数量的代码2024-11-12
PHPCMS V9 上传图片或附件后后台退出需要重新登录的解决办法2021-06-19
PHPCMS 推荐位输出组图的方法2020-12-30
PHPCMS内容页自定义下拉菜单循环输出数值的方法2020-12-17
PHPCMS v9 search模块搜索栏目名称二次开发2020-02-20
PHPCMS删除文章后数据库中仍有删除文章中的关键词解决办法2019-11-13
PHPCMS中TAG模板、COMMENT模板等不能使用{SITEURL($SITEID)}函数2019-11-13
PHPCMS V9编辑器中新增上传mp4视频(上传视频并插入HTML5的video标签)的功能2019-10-30
PHPCMS一些漏洞修复及解决方案2019-07-10
PHPCMS的产品筛选功能(通用)2019-04-09