typecho添加所有标签页面
在当前主题目录下新建php文件,粘贴如下代码,然后进入typecho后台新建page页面,然后选择模板为tags即可! 默认按照文章数量排序。
<?php
/**
* tags
* author:minirizhi.com
* @package custom
*/
$this->need('header.php'); ?>
<div id="main">
<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_Metas_Tag_Cloud', array('sort' => 'count', 'ignoreZeroCount' => true, 'desc' => true, 'limit' => 90000))->to($tags); ?>
<?php while($tags->next()): ?>
<li><a rel="tag" href="<?php $tags->permalink(); ?>"><?php $tags->name(); ?></a></li>
<?php endwhile; ?>
<div class="clear"></div>
</div>
</div>
</div>
<?php $this->need('footer.php'); ?>
至于样式如果有不满意可以自己写下CSS美化下。
- 上一篇: Typecho添加归档页面
- 下一篇: ADB连接出现device not found问题的解决方法
代码错了,你的:
估计忘记打空格了