千家信息网

如何使用phpcms标签

发表于:2024-11-26 作者:千家信息网编辑
千家信息网最后更新 2024年11月26日,本篇文章给大家分享的是有关如何使用phpcms标签,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。phpcms标签的用法:1、显示指定ca
千家信息网最后更新 2024年11月26日如何使用phpcms标签

本篇文章给大家分享的是有关如何使用phpcms标签,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

phpcms标签的用法:1、显示指定catid的栏目名称和链接;2、调用子栏目;3、得到指定栏目下的新闻;4、实现分页功能。

phpcms标签的使用:

1、显示指定catid的栏目名称和链接 {$CATEGORYS[25]['catname']} {$CATEGORYS[25]['url']}

获取父栏目id,获取父栏目名称 $CATEGORY[$catid][parentid]} 父栏目名称:{$CATEGORYS[$CAT[parentid]][catname]}

去掉标题限制后出现的省略号

    {str_cut($r[title],36,'...')}

格式化时间 2011-05-06 11:22:33

    {date('Y-m-d H:i:s',$r[inputtime])}    {date('Y年m月d日',$r[inputtime])}

2、调用子栏目(在栏目首页模板需要用到,列表页也可以用到)

    {pc:content action="category" catid="$catid" num="25" siteid="$siteid" order="listorder ASC"}    {loop $data $r}        {$r[catname]} |   {/loop}{/pc}

3、得到指定栏目下的新闻

(1)这里moreinfo="1"表示主副表关联起来 可以直接使用

            {pc:content action="lists" catid="$catid" num="25" order="id DESC" return="info" moreinfo="1"}               {loop $info $r}             更新日期:{date('Y年m月d日',$r[updatetime])}             作者:{$r[username]}             来源:{$r[copyfrom]}             点击率{$r[readpoint]}             网址{$r[url]}             文章标题 {$r['title']}             标题样式{title_style($v[style])}                          {/loop}    {/pc}

=====================

(2)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}   
  • {/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} {$rs['title']} {/loop} {/pc}

    =====================

    (3)文章从指定位置开始调用 (position推荐位使用)

    起始位置为5,调用3条。相当于limit功能。

    {pc:content  action="position" posid="27" order="listorder DESC" num="3" start="5"}        {loop $info $r}                {str_cut($r[description],115)}...        {/loop}    {/pc} 或{pc:content  action="lists"  catid="54"  thumb=""  order="listorder DESC"  start="3" num="5"} thumb="" 不分类

    =====================

    循环列表新闻
    {pc:content action="position" posid="9" order="listorder DESC" num="4"} {loop $data $r} {str_cut($r[title],36,'')}{date('Y-m-d H:i:s',$r[inputtime])}

    {if $n==1}{/if}{str_cut($r[description],112,'')}[reading more]

    {/loop} {/pc}

    =====================

    (4)有分页效果

        {pc:get sql="select * from wecheweyounews where hour=$hour order by id desc" return="data" num="50" page="$page"}                
    {$pages}
    {/pc}

    4、

    {pc:content  action="position" posid="1"  order="listorder DESC" thumb="1" num="5"} {loop $data $r}  {$r['title']}    {/loop}    {/pc}

    5、分页

    前台调用num="50"指每页50条记录

        {pc:get sql="select * from wecheweyounews where hour=$hour order by id desc" return="data" num="50" page="$page"}                
    {$pages}
    {/pc}


    以上就是如何使用phpcms标签,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注行业资讯频道。

    0