在你当前主题的functions.php文件中添加函数,
如下:
//字数统计
function allOfCharacters() {
$chars = 0;
$db = Typecho_Db::get();
$select = $db ->select('text')->from('table.contents');
$rows = $db->fetchAll($select);
foreach ($rows as $row) { $chars += mb_strlen(trim($row['text']), 'UTF-8'); }
$unit = '';
if($chars >= 10000) { $chars /= 10000; $unit = 'w'; }
else if($chars >= 1000) { $chars /= 1000; $unit = 'k'; }
$out = sprintf('%.2lf %s',$chars, $unit);
return $out;
}
然后在底部页面模板中添加:
<div class="item " style="margin:0 0 0 10px">
<span> 全站字数 <?php echo allOfCharacters(); ?>字</span>
</div>
根据个人爱好添加到自己喜欢的地方就好,小站就添加在侧栏,效果请看左侧。