显示文章字数和阅读时间,这功能有什么用呢,我也不知道,不过有用户说人家有我们能不能也加一个,那就加吧。下面由wordpress教程栏目给大家介绍为wordpress主题添加文章字数和阅读时间的方法。
为WordPress主题添加文章字数和阅读时间为WordPress主题添加文章字数和阅读时间
具体代码这里也分享一下:
文章字数统计
//字数统计functionzm_count_words($text){global$post;if(''==$text){$text=$post->post_content;if(mb_strlen($output,'UTF-8')<mb_strlen($text,'UTF-8'))$output.='<spanclass="word-count">共'.mb_strlen(preg_replace('/\s/','',html_entity_decode(strip_tags($post->post_content))),'UTF-8').'字</span>';return$output;}}