typecho文章添加字数统计
•技术
0
首先在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); ?>