本文是《免费(共164篇)》专题的第 117 篇。阅读本文前,您可以先阅读前面的一些文章:
美化图
1、在主题目录下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/300); // 修改数字300调整时间
$output .= '共计' . $text_num . '字,阅读大约' . $read_time . '分钟。';
return $output;
}
2、在主题目录zibll/inc/functions/zib-single.php,把下面代码添加到132行处(如下图)
说明:(必看)文章字数和阅读时间都不是很准,同时用处也不是很大…喜欢的话自己拿去试试吧!
您已阅读完《免费(共164篇)》专题的第 117 篇。您可以继续阅读该专题下面的其它文章: