themes:is-syntax
您的足迹: » 主题开发 » 开发文档 » 如何安装 » 如何升级 » 常见问题 » Typecho数据库设计 » Typecho 文档 » 更新历史 » 邮件列表 » is-syntax
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; ?>