下面就分享下typecho如何非插件实现文章归档页面,其实挺简单的,按照下面的搞起,分分钟的事情!
首先 复制page.php一枚,重命名为archives,当然,这个可以根据自己的喜好随便起名
其次 按照下面的替换其中的代码,从而可以让主题识别这个归档独立页面
PHP Code
复制内容到剪贴板
- <?php $this->need(‘header.php’); ?>
替换为
PHP Code
复制内容到剪贴板
- <?php
- /**
- * archives
- *
- * @package custom
- */
- $this->need(‘header.php’); ?>
第三 接著按照以下代码进行替换,其替换的代码为归档的核心代码
PHP Code
复制内容到剪贴板
- <?php $this->content(); ?>
替换为
复制代码 代码如下:
<?php $this->widget(‘Widget_Contents_Post_Recent’, ‘pageSize=10000’)->parse(‘<li>{year}-{month}-{day} : <a href=”{permalink}”>{title}</a></li>’); ?>
到此归档页面已经创建完成,接著上传到主题目录,然后进入typecho后台新建page页面,然后选择模板为archives,如果开始创建这个页面的时候不是取的这个名字请自行选择!下面分享一个现成的独立页面,直接新建一个page.php页面,代码全部复制进去即可!
PHP Code
复制内容到剪贴板
- <?php
- /**
- * archives
- *
- * @package custom
- */
- $this->need(‘header.php’); ?>
- <div id=“mainbox2”>
- <div class=“position”>当前位置:<a href=“./”>首页</a> » <?php$this->title() ?></div>
- <div class=“post” id=“post-<?php $this->cid(); ?>”>
- <h2><span class=“float_l”><a href=“<?php $this->permalink() ?>” title=“”><?php $this->title() ?></a></span></h2>
- <div class=“clear”></div>
- <div class=“entry”>
- <?php $this->widget(‘Widget_Contents_Post_Recent’,‘pageSize=10000’)->parse(‘<li>{year}-{month}-{day} : <a href=”{permalink}”>{title}</a></li>’); ?>
- <div class=“clear”></div>
- </div>
- </div>
- </div><!–mainbox end–>
- <?php $this->need(‘footer.php’); ?>
至于样式如果有不满意可以自己写下CSS美化下,既然折腾,就勇猛的向后看齐吧!
Hi, this is a comment. To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. Commenter avatars come from Gravatar.