Typecho 文章字数统计,Typecho统计字数代码

Typecho 文章字数统计,Typecho统计字数代码

在functions.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));
echo mb_strlen($rs['text'], 'UTF-8');
}

在模板中调用,你需要在什么地方显示就写什么地方

<?php echo art_count($this->cid); ?>