致力于为用户提供真实的
主机测评数据及优惠信息

为WordPress添加文章字数统计的方法

WordPress在后台编辑日志时编辑框左下角有一个字数统计,不过只显示在后台,能不能在前台也加上文章字数统计功能呢?研究了一下程序源文件,发现中文版WP后台的字数统计功能,是通过wp-contentlanguages目录的zh_CN-word-count.js实现的,就是不知道如何调用。网上搜了一下,找到两篇老外给出的代码:

一、把下面代码加到主题的functions.php文件中:

  1. functioncount_words($str){ 
  2.  
  3. $words= 0; 
  4.  
  5. $str=eregi_replace(" +"," ",$str); 
  6.  
  7. $array=explode(" ",$str); 
  8.  
  9. for($i=0;$i 
  10.  
  11.  
  12. if(eregi("[0-9A-Za-zÀ-ÖØ-öø-ÿ]",$array[$i])) 
  13.  
  14. $words++; 
  15.  
  16.  
  17. return$words; 
  18.  

然后在single.php中希望显示字数统计的位置加上:

  1. Word count: <?php echo count_words($post->post_content); ?> 

原文

二、还是将下面代码加到functions.php文件中,此方法与上面不同的是,还加上了一个估算的阅读时间:

  1. // Custom functions 
  2. // START : Show word count 
  3. function show_post_word_count(){ 
  4. ob_start(); 
  5. the_content(); 
  6. $content = ob_get_clean(); 
  7. return sizeof(explode(" ", $content)); 
  8. // END : Show word count 
  9. // START : Estimated reading time 
  10. if (!function_exists('est_read_time')): 
  11. function est_read_time( $return = false) { 
  12. $wordcount = round(str_word_count(get_the_content()), -2); 
  13. $minutes_fast = ceil($wordcount / 250); 
  14. $minutes_slow = ceil($wordcount / 150); 
  15. if ($wordcount <= 150) { 
  16. $output = __("< 1 minute"); 
  17. else { 
  18. $output = sprintf(__("%s – %s minutes"), $minutes_fast, $minutes_slow); 
  19. echo $output; 
  20. endif; 
  21. if (!function_exists('est_the_content')): 
  22. function est_the_content( $orig ) { 
  23. // Prepend the reading time to the post content 
  24. return est_read_time(true) . "nn" . $orig; 
  25. endif; 
  26. // END : Estimated reading time 

同样在single.php中希望显示字数统计的位置加上:

  1. The following <?php echo show_post_word_count(); ?> words should take about <?php echo est_read_time(); ?> to read. 

可惜上述两种方法对汉字统计无效,只适合纯英文站点,网上也没发现与中文博客字数统计相关的文章,没办法还是自己折腾一个吧。

WordPress中文博客文章字数统计代码

添加方法与上述相同,首先把下面代码加到functions.php文件中。( 注:HotNews主题加到“//全部结束”前面 )

  1. //字数统计 
  2. function count_words ($text) { 
  3. global $post; 
  4. if ( '' == $text ) { 
  5. $text = $post->post_content; 
  6. 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') . '个字'
  7. return $output; 

再把调用统计代码加到自己认为适合的位置。

经测试对中文统计没有什么问题,英文统计的是字母。

  1. <?php echo count_words ($text); ?> 

效果看这篇文章标题下面信息栏

赞(0) 打赏
未经允许不得转载:爱主机 » 为WordPress添加文章字数统计的方法
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址