categories标签

版本5.0.170927 新增
标签名 作用 包含属性
categories 获取文章分类列表 where,order,item

标签属性:| 标签属性名 | 含义 || —- | —- || where | 查询条件变量, 支持数组和字符串,如$where || order | 排序方式 || item | 循环变量,默认 vo |

获取所有文章分类

  1. <portal:categories item="vo">
  2. {$vo.name}<br>
  3. {$vo.description}<br>
  4. </portal:categories>

根据根据 where获取文章分类

  1. <php>
  2. $where=['parent_id'=>0];
  3. </php>
  4. <portal:categories where="$where" order="list_order DESC" item="vo">
  5. {$vo.name}<br>
  6. {$vo.description}<br>
  7. </portal:categories>

原文: https://www.thinkcmf.com/docs/cmf/文章分类标签.html