作为 PHP 代码小白的我,爬了几位大佬的源代码,然后折腾出了本站的标签云,现在看上去还算精致。
源代码如下,提供给后来的小白朋友参考。
<section class="widget">
<h3 class="widget-title"><?php _e('标签'); ?></h3>
<?php $this->widget('Widget_Metas_Tag_Cloud', 'ignoreZeroCount=1&limit=30&sort=count&desc=1')->to($tags); ?>
<?php if($tags->have()): ?>
<?php while ($tags->next()): ?>
<a style="background:#b5b5b5;color:#fff;font-size:12px;border-radius:10px;padding: .2em .6em .3em;line-height: 2em;" href="<?php $tags->permalink();?>" title="<?php $tags->count(); ?> 个话题"><?php $tags->name(); ?></a>
<?php endwhile; ?>
<?php endif; ?>
</section>