Copyright @ 2015-2024 织梦园 版权所有 Power by DedeCms
鲁ICP备15039853号-2

模板标签 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字段。