Typecho 输出所有分类+文章-就像CMS一样
输出分类和文章,制作CMS模板必备/* 循环所有的分类 */
<?php $this->widget('Widget_Metas_Category_List')->to($categories); ?>
<?php while ($categories->next()): ?>
/* 循环当前分类下的文章 */
<?ph...
Typecho神奇的is语法
神奇的is语法typecho可以使用is语法判断很多东西,比如$this->is('index'); //判断首页
$this->is('archive'); //判断archive
$this->is('single'); //判断为阅读页面page+post
$this->is('page...