边栏每月归档后显示文章数目
<?php $this->widget('Widget_Contents_Post_Date',
'type=month&format=Y年m月')->parse('
({count})
显示全部文章列表
<?php $this->widget('Widget_Contents_Post_Recent',
'pageSize=10000')->parse('
href="{permalink}">{title}
自定义数量标签列表
<?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; ?>
前台输出相关统计
<?php Typecho_Widget::widget('Widget_Stat')->to($stat); ?>
2014 年建站以来,截至 %s 在设定的 %s 个分类 和 %s 个页面中, 发布了 %s 篇文章,收到了 %s 条评论。 ', date('Y年n月j日G时i分'), $stat->categoriesNum, $stat->publishedPagesNum, $stat->publishedPostsNum, $stat->publishedCommentsNum); ?>
彩色标签云
<?php Typecho_Widget::widget('Widget_Metas_Tag_Cloud')->to($tags); ?>
<?php if($tags->have()): ?>
<?php while ($tags->next()): ?>
<?php $tags->name(); ?>
<?php endwhile; ?>
<?php endif; ?>
End