typecho可以使用is判断语法
admin
撰写于 2022年 03月 01 日

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; ?>

typecho可以使用is判断语法

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; ?>

赞 (0)

猜您想看

评论区(暂无评论)

这里空空如也,快来评论吧~

我要评论