Typecho 自定义标签页模板

设置 Typecho 标签页模板,并按标签所属文章数量从多到少排列输出。

<?php 
$this->widget('Widget_Metas_Tag_Cloud', 'sort=count&ignoreZeroCount=1&desc=1')->to($tags);
if($tags->have()):
    echo '<div class="tags-list">';
    while ($tags -> next()):
        echo '<a href="'.$tags->permalink.'" title="'.$tags->count.' 个话题">'. $tags->name.' ('.$tags->count.')</a>';
    endwhile;
endif;
?>

如果需要控制数量,上面第二行可以换成:

$this->widget('Widget_Metas_Tag_Cloud', array('sort' => 'count', 'ignoreZeroCount' => true, 'desc' => true, 'limit' => 20))->to($tags);
//或
$this->widget('Widget_Metas_Tag_Cloud', 'sort=count&ignoreZeroCount=1&desc=1&limit=20')->to($tags);
换色
阅读
登录
扫码