最近优站发现一些新媒体网站文章开头有字数和预期阅读时间。这个功能有什么用?我不知道,但是如果别人有,我们可以加一个,那就加吧。
教程开始:
代码添加到当前主题函数模板 functions.php 中。
// 字数统计
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;
}
}
同上继续:
// 阅读时间
function zm_get_reading_time($content) {
$zm_format = '<span class="reading-time">阅读时间%min%分%sec%秒</span>';
$zm_chars_per_minute = 300; // 估算1分种阅读字数
$zm_format = str_replace('%num%', $zm_chars_per_minute, $zm_format);
$words = mb_strlen(preg_replace('/\s/','',html_entity_decode(strip_tags($content))),'UTF-8');
$minutes = floor($words / $zm_chars_per_minute);
$seconds = floor($words % $zm_chars_per_minute / ($zm_chars_per_minute / 60));
return str_replace('%sec%', $seconds, str_replace('%min%', $minutes, $zm_format));
}
function zm_reading_time() {
echo zm_get_reading_time(get_the_content());
}
显示文章字数代码:
<?php echo zm_count_words($text); ?>
显示阅读时间代码:
<?php zm_reading_time(); ?>
但是字数和阅读时间都不是很准,尤其是阅读时间,简直是扯淡。默认是根据央视播音员的速度来决定的。
写完这篇文章,发现网上有更简单的代码。不同的是上面的代码精确到秒,下面的代码估计只有分钟。
// 阅读时间
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;
}
调用代码:
<?php echo count_words_read_time(); ?>