火车头内容采集范例,如何把文章随机发布到一个栏目
火车头内容采集范例,如何增加一个随机栏目,就是发布是时候随机发布到一个栏目。
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;
}
}