Copyright @ 2015-2020 織夢園 版權所有 Power by DedeCms
魯ICP備15039853號-1

模板標簽 TAG標簽 網站地圖 XML地圖 今日更新 返回頂部
一、找到文件/include/helpers/文件下面的extend.helper.php文件,復制以下代碼粘貼到***后。
// 統計文章字數 function strlen_utf8($str) { $i = 0; $count = 0; $str = Html2text($str); $len = strlen($str); while ($i < $len) { $chr = ord($str[$i]); $count++; $i++; if ($i >= $len) { break; } if ($chr & 0x80) { $chr <<= 1; while ($chr & 0x80) { $i++; $chr <<= 1; } } } return $count; } |
二、標簽放在需要調用字數的位置。
內容頁標簽是
{dede:field.body function='strlen_utf8(@me)'/} |
列表頁的標簽是
[field:body function="strlen_utf8(@me)"/] |
如果列表頁調用不顯示,到后臺內容模型管理--列表附加字段上加上body字段。