以下代码放入b2/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; }
打开\b2\TempParts\Single目录
b2有五种文章样式,自行选择一种引入
搜索
<span><?php echo b2_get_icon('b2-eye-fill'); ?><b v-text="postData.views"></b></span>
</li> //该标签的下面引入以下代码
<?php echo count_words_read_time(); ?>