💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 使用范围 * apps/daohang/theme/模板主题/category/web.tpl * apps/daohang/theme/模板主题/category/mp.tpl * apps/daohang/theme/模板主题/category/mini.tpl * apps/daohang/theme/模板主题/category/page.tpl ## 分类页普通标签 {$limit} 分页大小 {$page} 当前分页 {$sort} 排序字段 {$order} 排序方式 {$path} 分页链接规则 {$term_id} 分类ID {$term_name} 分类名称 {$term_slug} 分类别名 {$term_module} 分类所属应用 {$term_order} 分类权重 {$term_info} 分类描述 {$term_parent} 父级ID {$term_count} 数据统计 {$term_tpl} 自定义模板文件名 {$term_title} SEO优化标题 {$term_keywords} SEO优化关键字 {$term_description} SEO优化描述 ## 分类页循环输出实例 通过daohangSelect函数调用循环数据,按分类ID分页循环输出网址实例 ``` {assign name="list" value=":daohangSelect([ 'cache' => true, 'status' =>'normal', 'sort' => $sort, 'order' => $order, 'limit' => $limit, 'page' => $page, 'term_id' => ['in',DcTermSubIds($term_id,'category','array')], ])" /} ``` #### 页码标签 {$list.total} 总记录数 {$list.per_page} 每页记录数 {$list.current_page} 当前页码 {$list.last_page} 最后一页页码 #### 简洁分页样式 ``` {:DcPageSimple($list['current_page'], $list['last_page'], $path)} ``` #### 常规分页样式 ``` {:DcPage($list['current_page'], $list['per_page'], $list['total'], $path)} ```