欢迎访问服务器技术网-www.fuwuqijishu.com

几个方式实现Typecho不同分类显示不同模板

网站建设 fuwuqijishu 2年前 (2022-09-04) 49次浏览 0个评论 扫描二维码

一般情况下,我们在使用Typecho程序只会使用一套模板,毕竟这款轻便型的CMS适合我们使用到个人日志类网站,也很少有人做较大型的网站。但是有些网友可能希望某个分类用不同的模板对应,那如何设置呢?我们可以直接给每个分类对应一个主题页面名称,也可以使用IF判断。

<?php 
    if($this->is('category','default')){
        $this->need('default.php');
    }else{
        $this->need('other.php');
    }
?>

这个方法也是我们常用的,我们使用文件名和分类名一样的,就自动调用对应的模板,其他的用一个对应。

<?php 
    if($this->is('category','default')){
        $this->need('default.php');
    }elseif($this->is('category','technology')){
        $this->need('technology.php');
    }else{
        $this->need('other.php');
    }
?>

同理这个也是。

<?php 
$slugArray = array('default','technology');
foreach($slugArray as $slug){
    if($this->is('category',$slug)){
        $this->need('default.php');
    }else{
        $this->need('other.php');
    }
}
?>

这个是用IF判断的,根据别名来使用不同的模板分类。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2207.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900