wordpress文章字数统计功能,很简单,而且和icrosoft Word 统计的字数完全一致。中英文代码统计中都没有出现问题,可以说是一段标准的内容统计代码,简约高效。
1、将下面代码复制到wp主题的 functions.php 文件里。
1 2 3 4 5 6 7 8 9 |
//字数统计 function count_words ($text) { global $post; if ( '' == $text ) { $text = $post->post_content; if (mb_strlen($output, 'UTF-8') < mb_strlen($text, 'UTF-8')) $output .= '本文共计有' . mb_strlen(preg_replace('/\s/','',html_entity_decode(strip_tags($post->post_content))),'UTF-8') . '个字'; return $output; } } |
2、找到需要显示的前端位置放入以下代码。
1 |
<?php echo count_words ($text); ?> |