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>
本文链接:https://www.typeecho.cn/post/20.html
版权声明:转载或引用请注明出处
点赞 1
打赏