Typecho-判断当前页面是否为首页 - 并自定义输出内容
Typecho在有一些情况下需要去判断是否是首页,然后显示相当应的内容
<?php if($this->is('index')): ?>
//首页
<?php else: ?>
//不是首页
<?php endif; ?>
Typecho在有一些情况下需要去判断是否是首页,然后显示相当应的内容
<?php if($this->is('index')): ?>
//首页
<?php else: ?>
//不是首页
<?php endif; ?>