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>
空空如也!