WordPress添加文章字数统计和阅读时间

WordPress添加文章字数统计和阅读时间

今天给学习WordPress建网站的学员们介绍一个小功能,就是在自己网站文章的底部添加文章字数统计阅读时间的功能。效果如下图:

图片[1]-WordPress添加文章字数统计和阅读时间-龙网 - 教程、网赚、安全、免费资源

这个功能可以统计一篇文章总共有多少字,并且预计文章阅读时间。下面龙网就来介绍一下制作方法。

方法和步骤

1.打开自己的WordPress模板文件functions.php,放上相关的函数代码

//字数和预计阅读时间统计
function count_words_read_time () {
global $post;
   $text_num = mb_strlen(preg_replace('/\s/','',html_entity_decode(strip_tags($post->post_content))),'UTF-8');
   $read_time = ceil($text_num/400);
   $output .= '本文共' . $text_num . '个字,阅读需要' . $read_time  . '分钟。';
   return $output;
}

2. 在网站的文章模板single.php里使用以下的标签来调用相关数据。

<?php echo count_words_read_time(); ?>

这样Wordpress程序会自动统计文章字数和阅读时间了。

版权声明
转载请注明本文地址:https://www.e363.com/1486.html
THE END
喜欢龙网的内容,就支持一下吧!
点赞22赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容