allSubCategories标签

版本5.0.170927 新增
标签名 作用 包含属性
allSubCategories 获取指定分类下的所有子分类 categoryId ,item

标签属性:| 标签属性名 | 含义 || —- | —- || categoryId | 父级分类 id|| item | 循环变量,默认 vo |

代码演示

  1. <portal:allSubCategories categoryId="1" item="vo">
  2. {$vo.name}<br>
  3. {$vo.description}<br>
  4. </portal:allSubCategories>
  1. <php>$categoryId=1;</php>
  2. <portal:allSubCategories categoryId="$categoryId" item="vo">
  3. {$vo.name}<br>
  4. {$vo.description}<br>
  5. </portal:allSubCategories>

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