在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));
    $text = preg_replace("/[^\x{4e00}-\x{9fa5}]/u", "", $rs['text']);
    echo mb_strlen($text,'UTF-8');
}

  在模板中需要的地方调用

<?php art_count($this->cid); ?>
最后修改:2024 年 03 月 02 日
如果觉得我的文章对你有用,请随意赞赏