Home  >  Article  >  Backend Development  >  destoon实现资讯信息前面调用它所属分类的方法_PHP

destoon实现资讯信息前面调用它所属分类的方法_PHP

WBOY
WBOYOriginal
2016-06-01 11:51:511012browse

有时候我们需要在一些信息前面添加他所属的分类,让他显示出来,本文介绍的方法虽然有些不具有通用性,但是可以实现这一效果,代码如下,供大家参考:

<!--{php $tags=tag("moduleid=21&condition=status=3 and catid IN(263,264,249,327,11,598,599,12,238,237,265,285,328,567,570) and level=6&showcat=1&areaid=$cityid&pagesize=11&length=38&datetype=2&target=_blank&order=addtime desc&template=null")}-->
 
 {loop $tags $i $t}         
  <li>
  <span>[{$t[catname]}]</span><a href="{$t[linkurl]}" rel="external nofollow" {if $target} target="{$target}"{/if} title="{$t[alt]}">{$t[title]}</a> 
  </li>
      {/if}
  {/loop}

注意:

1. 代码中的这句catid IN(263,264,249,327,11,598,599,12,238,237,265,285,328,567,570) 是所有的资讯信息所属的分类
(这段id范围比较固定,不具有通用性,这里需要填上自己的资讯下面的分类的id)
 
2.把showcat=1 这个写上
 
3.{$t[catname]} 这是分类名

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn