《 typecho随机颜色所有标签代码 》
可以放到独立页面或者侧边栏,放独立页面也可以搭配文章归档一起。
<div>
<h2 class="title"><strong>所有标签:</strong></h2>
<?php Typecho_Widget::widget('Widget_Metas_Tag_Cloud')->to($tags); ?>
<?php if($tags->have()): ?>
<?php while ($tags->next()): ?>
<a style="color:rgb(<?php echo(rand(0,255)); ?>,<?php echo(rand(0,255)); ?>,
<?php echo(rand(0,255)); ?>)" href="<?php $tags->permalink();?>">
<?php $tags->name(); ?></a>
<?php endwhile; ?>
<?php endif; ?>
</div>
本文链接:https://weich.ee/archives/17.html
- 上新一篇: typecho本文章标签代码
- 下旧一篇: typecho文章归档代码