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