《 typecho文章归档代码 》
复制独立页面的文件出来到别的文件夹(预防被直接覆盖,记得备份),一般都是page.php
,重命名名字不一样就行,
在里面修改顶部的代码(删除):
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
修改成新的代码:
<?php
/**
* 文章归档
*
* @package custom
*
*/$this->need('header.php');
?>
<!--改page.php-->
再在合适的地方插入以下代码:
<div>
<h2 class="title"><strong>文章归档:</strong></h2>
<?php $this->widget('Widget_Contents_Post_Recent', 'pageSize=10000')->to($archives);
$year=0; $mon=0; $i=0; $j=0;
//$output = '<article class="archives"><ul class="archives-list">';
while($archives->next()):
$year_tmp = date('Y',$archives->created);
$mon_tmp = date('m',$archives->created);
$y=$year; $m=$mon;
if ($mon != $mon_tmp && $mon > 0) $output .= '</ul></div></li></article>'; //结束拼接
if ($year != $year_tmp && $year > 0) $output .= '</ul>';
if ($year != $year_tmp) {
$year = $year_tmp;
//$output .= '<h4>'. $year .' 年</h4><ul>';
}
if ($mon != $mon_tmp) {
$mon = $mon_tmp;
$output .= '<article class="archives"><div class="item"><ul><h4>'.$year .'-'. $mon .'</h4>';
}
$output .= '<li><time>'.date('',$archives->created).'</time><a href="'.$archives->permalink .'">'. $archives->title .'</a> <span class="text-muted">('. $archives->commentsNum.')</span></li>'; //输出文章日期和标题
endwhile;
echo $output;
?>
</div>
可以搭配所有标签做个总的归档也可以。
本文链接:https://weich.ee/archives/16.html
- 上新一篇: typecho随机颜色所有标签代码
- 下旧一篇: Typecho写文章自动添加插入tag标签