https://www.xunruicms.com/doc/1084.html
按照里面的代码修改一下。
if ($_GET['action'] == 'category') {
$this->module['category'] = \Phpcmf\Service::L('category', 'module')->get_category($this->module['share'] ? 'share' : $this->module['dirname']);
if (!$this->module['category']) {
echo '模块【'.$this->module['dirname'].'】没有创建栏目';
}
foreach ($this->module['category'] as $t) {
if ($t['child'] == 0 && $t['tid'] == 1) {
echo '<h1>'.$t['name'].'<=>'.$t['id'].'</h1>'.PHP_EOL;
}
}