找到
1
篇与
面包屑
相关的结果
-
Typecho增加面包屑模块 将以下代码保存到主题需要显示面包屑的对应页面文件中即可,比如post.php,archive.php,page.php <div class="breadcrumb"> <a href="<?php $this->options->siteUrl(); ?>">首页</a> » <?php if ($this->is('index')): ?><!-- 页面为首页时 --> <?php elseif ($this->is('post')): ?><!-- 页面为文章单页时 --> <?php $this->category(); ?> » <?php $this->title() ?> <?php else: ?><!-- 页面为其他页时 --> <?php $this->archiveTitle(' » ','',''); ?> <?php endif; ?> </div>