标签是网站必备的要素,但是 Typecho 默认是没有标签的列表集合页的,那么下面就来说下增加标签云列表集合页的方法。
1、在你使用中的模板根目录下新建一个名为 tags.php 的文件。
2、复制下方完整代码添加至 tags.php 文件中:
<?php
/**
* 全部标签
*
* @package custom
*/
//代码
?>
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('component/header.php'); ?>
<!-- aside -->
<?php $this->need('component/aside.php'); ?>
<!-- / aside -->
<header class="bg-light lter wrapper-md">
<h1 class="m-n font-thin text-black l-h"><?php _me("全部标签") ?></h1>
<small class="text-muted letterspacing indexWords"><?php $this->options->description() ?></small>
</header>
<section id="tag_cloud-2" class="widget widget_tag_cloud wrapper-md clear" style="margin-bottom:auto;">
<h2 id="tag-cloud-title" class="widget-title m-t-none text-md"><?php _me("标签云") ?></h2>
<?php Typecho_Widget::widget('Widget_Metas_Tag_Cloud','ignoreZeroCount=1&limit=150')->to($tags); ?>
<?php if($tags->have()): ?>
<?php while ($tags->next()): ?>
<span id="tag-clould-color" style="background-color:rgb(<?php echo(rand(0,255)); ?>,<?php echo(rand(0,255)); ?>,
<?php echo(rand(0,255)); ?>)">
<a href="<?php $tags->permalink();?>" target="_blank">
<?php $tags->name(); ?></a>
</span>
<?php endwhile; ?>
<div style="margin: 71px;">
</div>
<?php endif; ?>
</section>
<style>
#tag-clould-color {
padding: 5px 10px 5px 10px;
border-radius: 10px;
color: #FFFFFF;
margin: 6px 3px 3px 0;
display: inline-block;
}
</style>
<!-- footer -->
<?php $this->need('component/footer.php'); ?>
<!-- / footer -->
上述代码参数说明:
sort:排序方式为 mid;
ignoreZeroCount:忽略文章数为 0 的;
desc:是否降序输出;
limit:输出标签数目,若设置为0代表输出全部。
3、在后台新建独立页面,选择 tags.php 为模板即可。