一般来说,无论我们在使用Typecho或者WP的时候,标签排序都是按照系统自带的随机排序格式,有些主题可能会有一些自带的排序规则。这里整理到2个网上提供的排序方法,如果有需要在设定主题的时候指定特定的标签排序的可以参考。
1、时间排序
<?php $this->widget('Widget_Metas_Tag_Cloud')
->to($taglist); ?><?php while($taglist->next()): ?>
<li><a href="<?php $taglist->permalink(); ?>" title="<?php $taglist->name(); ?>"><?php $taglist->name(); ?></a></li>
<?php endwhile; ?>
2、文章数量排序
<?php $this->widget('Widget_Metas_Tag_Cloud', array('sort' => 'count', 'ignoreZeroCount' => true, 'desc' => true, 'limit' => 20))->to($tags); ?>
<?php while($tags->next()): ?>
<li><a rel="tag" href="<?php $tags->permalink(); ?>"><?php $tags->name(); ?></a></li>
<?php endwhile; ?>
我们可以选择合适的方式调用标签。