开始研究玩typecho了,文档太少先整理一些语法 函数起来
typecho可以使用is语法判断很多东西,比如
$this->is('index'); $this->is('archive'); $this->is('single'); $this->is('page'); $this->is('post'); $this->is('category'); $this->is('tag');
甚至是
$this->is('category', 'default'); $this->is('page', 'start'); $this->is('post', 1);
需要注意的是,后面的参数是分类、页面的缩略名 写法
<?php if ($this->is('post')) : ?> 这里就是内容了 <?php endif; ?>
主页有翻页键,点击依旧被判定是首页怎么改
主页输出所有文章,如何找出某一分类中的文章?想输出所有,然后将某一分类进行样式设置
比如要让内容只在主页显示而不显示在文章页,应该要怎么写?