前面博客吧分享了Typecho插件WordCount,该插件可以在后台编辑文章时统计内容的字数,而这次博客吧要分享的字体统计代码则是在网站前端的文章页面显示内容总字数,实现原理是使用php函数mb_strlen获取内容字符串的长度。
在当前主题的functions.php文件中添加函数
1 2 3 4 5 | function word_count($cid){ $db = Typecho_Db::get (); $rs = $db->fetchRow($db->select('table.contents.text')->from('table.contents')->where('table.contents.cid=?',$cid)->order ('table.contents.cid',Typecho_Db::SORT_ASC)->limit (1)); return mb_strlen($rs['text'], 'UTF-8'); } |
在文章页面模板(通常是post.php)添加调用代码
1 | <?php echo word_count($this->cid); ?> |