加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pagefile.php 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
* 归档页面
*
* @package custom
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('includes/head.php');
$this->need('includes/header.php');
?>
<main class="main-container container">
<div class="post-body">
<div class="post-content">
<h2>标签云</h2>
<?php $this->widget('Widget_Metas_Tag_Cloud', 'sort=mid&ignoreZeroCount=1&desc=0&limit=30')->to($tags); ?>
<?php if($tags->have()): ?>
<ul class="tags-list">
<?php while ($tags->next()): ?>
<li class="tags-item"><a href="<?php $tags->permalink(); ?>" rel="tag" class="no-line" title="有 <?php $tags->count(); ?> 篇文章在这个标签下"><?php $tags->name(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php else: ?>
<p><?php _e('没有发现任何标签哦~'); ?></p>
<?php endif; ?>
<br />
<h2>文章归档</h2>
<ul class="archives-list">
<?php
$this->widget('Widget_Contents_Post_Recent', 'pageSize=10000')->to($archives);
$year=0; $mon=0; $i=0; $j=0;
$output = '<div id="archives">';
while($archives->next()):
$year_tmp = date('Y',$archives->created);
$mon_tmp = date('m',$archives->created);
$y=$year; $m=$mon;
if ($year != $year_tmp) {
$year = $year_tmp;
$output .= '<h3 class="archives-year">'. $year .' 年</h3>'; //输出年份
}
$mon = $mon_tmp;
$output .= '<li><a href="'.$archives->permalink .'" class="no-line"><span class="archives-date">'. $mon .'-'.date('d ',$archives->created).'</span>&nbsp;&nbsp;'. $archives->title .'</a></li>'; //输出文章日期和标题
endwhile;
$output .= '</li></div>';
echo $output;
?>
</ul>
</div>
</div>
</main>
<!-- 防止找不到 owo 容器而报错 -->
<div style="display:none" class="OwO"></div>
<?php $this->need('includes/footer.php'); ?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化