主要代码即
<?php while($this->next()): ?>
<?php if($this->category != "abc"): ?>
//abc为你不想在首页显示分类的abc名称
//正常输出循环
<?php endif; ?>
<?php endwhile; ?>
找到如上图所示的首行和尾行代码,分别插入中间的代码即可
在Noline主题中的做法是,只需要拷贝index.php中的代码,加上独立页面的页头即可,然后 把
<?php while ($this->next()): ?>
改为:
<?php $this->widget('Widget_Archive@index', 'pageSize=5&type=category', 'mid=297')->to($newList); ?> <!-- 取到特定类目的文章,存放在newList变量中 -->
<?php while ($newList->next()): ?> <!-- 对取到的文章进行循环输出 -->
原文参考拾月