Typecho 主题内置 Sitemap(站点地图)

chen'mo
2021-02-22 / 0 评论 / 2,006 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2021年02月22日,已超过1129天没有更新,若内容或图片失效,请留言反馈。

Typecho 主题内置 Sitemap(站点地图)

插入路由


同样是利用themeInit函数

function themeInit($archive) {
    if ($self->request->getRequestUri() == "/sitemap.html" || $self->request->getRequestUri() == "/index.php/sitemap.html") {
        $self->setThemeFile("sitemap.php");
        $self->response->setStatus(200);
    }
}

sitemap模板

保存在主题目录即可

<?php
if (!defined('__TYPECHO_ROOT_DIR__')) {
    exit;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml/">
<head profile="https://gmpg.org/xfn/11">
  <meta http-equiv="Content-Type" content="text/html; charset=<?php $this->options->charset();?>" />
  <title>站点地图 - <?php $this->options->title()?></title>
  <meta name="keywords" content="站点地图,sitemap,<?php $this->options->title()?>" />
  <meta name="copyright" content="<?php $this->options->title()?>" />
  <link rel="canonical" href="<?php $this->permalink()?>" />
  <style type="text/css">
    body {font-family: Microsoft Yahei,Verdana;font-size:13px;margin:0 auto;color: #000000;background: #ffffff;width: 990px;margin: 0 auto}
    a:link,a:visited {color:#000;text-decoration:none;}
    a:hover {color:#08d;text-decoration:none;}
    h1,h2,h3,h4,h5,h6 {font-weight:normal;}
    img {border:0;}
    li {margin-top: 8px;}
    .page {padding: 4px; border-top: 1px #EEEEEE solid}
    .author {background-color:#EEEEFF; padding: 6px; border-top: 1px #ddddee solid}
    #nav, #content, #footer {padding: 8px; border: 1px solid #EEEEEE; clear: both; width: 95%; margin: auto; margin-top: 10px;}
  </style>
</head>
<body vlink="#333333" link="#333333">
  <h2 style="text-align: center; margin-top: 20px"><?php $this->options->title()?>'s SiteMap </h2>
  <center></center>
  <div id="nav"><a href="<?php $this->options->siteUrl();?>"><strong><?php $this->options->title()?></strong></a> &raquo; <a href="<?php $this->permalink()?>">站点地图</a></div>
  <div id="content">
    <h3>最新文章</h3>
    <ul>
    <?php
$output = '';
$stat = Typecho_Widget::widget('Widget_Stat');
$this->widget('Widget_Contents_Post_Recent', 'pageSize=' . $stat->publishedPostsNum)->to($archives);
$year = 0;
$mon = 0;
$i = 0;
$j = 0;
while ($archives->next()) {
    $year_tmp = date('Y', $archives->created);
    $mon_tmp = date('m', $archives->created);
    $y = $year;
    $m = $mon;
    if ($year > $year_tmp || $mon > $mon_tmp) {
        $output .= '</ul>';
    }
    $output .= '<li><a href="' . $archives->permalink . '">' . $archives->title . '</a></li>';
}
$output .= '</ul>';
echo $output;
?>
    </ul>
  </div>
  <div id="content">
    <h3>独立页面</h3>
    <ul class="clearfix" id="nav_menu">
      <li><a href="<?php $this->options->siteUrl();?>">Home</a></li>
      <?php $this->widget('Widget_Contents_Page_List')
    ->parse('<li><a href="{permalink}">{title}</a></li>');?>
    </ul>
  </div>
  <div id="content">
    <h3>分类目录<h3>
      <ul><?php $this->widget('Widget_Metas_Category_List')
    ->parse('<li><a href="{permalink}">{name}</a> ({count})</li>');?>
      </ul>
  </div>
  <div id="content">
    <h3>标签云<h3>
      <ul><?php $this->widget('Widget_Metas_Tag_Cloud')
    ->parse('<li><a href="{permalink}">{name}</a> ({count})</li>');?>
      </ul>
  </div>
  <div id="footer">查看博客首页: <strong><a href="<?php $this->options->siteUrl();?>"><?php $this->options->title()?></a></strong></div><br />
  <center>
    <div style="text-algin: center; font-size: 11px"><br /> &copy; <?php echo date('Y'); ?> 无插件 Sitemap By <strong><a href="https://doufu.ru" target="_blank">Ryan</a></strong> 版权所有<br /><br /><br />
    </div>
  </center>
</body>
</html>

本站演示地址:https://cmsblog.cn/sitemap.xml
(JOE主题的地址有点不一样而已)

Typecho 主题点赞功能实现
« 上一篇 02-22
Typecho侧边栏最新评论实现显示评论于文章功能
下一篇 » 02-23

评论 (0)

插入图片