## 当前分类
根据`app/source/site/site.ctrl.php `13行
~~~
$category = pdo_fetch("SELECT * FROM ".tablename('site_category')." WHERE id = '{$cid}' AND uniacid = '{$_W['uniacid']}'");
~~~
| 可利用的值 |
| --- |
| id |
| name |
| icon |
| description |
| linkurl |
| css |
当前分类的值都可以调用,比如:
分类描述
~~~
{$category['description']}
~~~
第24行
~~~
$title = $category['name'];
~~~
当前分类名称直接调用
~~~
{$title}
~~~