PHPCMSv9模板调用代码常用写法

11111111
调用文章标题列表:
{pc:content action=”lists” catid=”22 <!–指定栏目ID–>” order=”id DESC” thumb=”” moreinfo=”” num=”1 <!–调用数量–>” }
{loop $data $n $r}
<li><a href=”{$r[‘url’]}” title=”{$r[‘title’]}”>{$r[‘title’]}</a></li>
{/loop}
{/pc}

调用缩略图+文章标题:
{pc:content action=”lists” catid=”22 <!–指定栏目ID–>” order=”id DESC” thumb=”1 <!–需带有缩略图,删除数字及不限制–>” moreinfo=”” num=”1 <!–调用数量–>” }
{loop $data $n $r}
<a href=”{$r[‘url’]}”><img src=”{$r[thumb]}” width=”120″ height=”90″ alt=”{$r[‘title’]}” /></a>
<a href=”{$r[‘url’]}” title=”{$r[‘title’]}” target=”_blank”>{$r[‘title’]}</a>
{/loop}
{/pc}

调用首页头条推荐:
{pc:content action=”position” posid=”2 <!–指定推荐位ID,2为首页头条推荐–>” catid=”22 <!–指定栏目ID–>” thumb=”” order=”id DESC” num=”3 <!–调用数量–>” }
{loop $data $n $r}
<li><a href=”{$r[‘url’]}” title=”{$r[‘title’]}”>{str_cut($r[title],45,”)} <!–标题长度限制–></a></li>
{/loop}
{/pc}

未经允许不得转载:王超博客 » PHPCMSv9模板调用代码常用写法

赞 (1)

评论 0

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址