有一些博客,他们的侧边栏小工具里会出现一个月存档挂件。我觉得有两个原因会让这些挂出来,一个是方便读者查阅,另外一个是可能要装下逼,让读者知道他这个博客有多老。哈哈,玩笑话。但是有个问题是,随着时间的推移,月份积累越来越多,侧边栏小工具会因此拉得很长,浪费宝贵的空间。
因此,我们可否考虑下限制侧边栏的月归档显示数量?答案是肯定的,实现起来蛮简单,只需要在 sidebar.php 里改点代码就 OK 了。
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
These codes are the default ones that come with many theme. It works out perfectly fine for the first few months, but as your blog gets older, it becomes a clutter in the sidebar. So you should change it to the following codes:
这段代码是很多主题默认的。前几个月还好,后面长了就很占位置啦,如果你要有所改变的话,请把上面这段代码换成下面的:
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly&limit=6'); ?>
</ul>
你可以改变这个数字,比如选择 6 个月。这样就简洁多了。于此类推,你还可以自定义归档页面的显示数目。
发表回复