直接进主题,到Joe/core/core.php最后加上下面的代码
/* 增加文章字数统计 */
function art_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));
$text = preg_replace("/[^\x{4e00}-\x{9fa5}]/u", "", $rs['text']);
echo mb_strlen($text,'UTF-8');
}
然后再进入Joe/public/batten.php 里加上以下代码
<span class="text"><?php art_count($this->cid); ?> 个字</span>
<span class="line">/</span>
大概就是这个样子
这样就好了。
评论 (0)