wordpress添加文章字数统计和预计阅读时间代码

2024年10月20日 建站教程

wordpress添加文章字数统计代码

1、将以下代码加到主题的 functions.php 文件最后一个 ?> 的前面。

//字数统计
function count_words ($text) {
  global $post;
  if ( '' == $text ) {
    $text = $post->post_content;
    if (mb_strlen($output, 'UTF-8') < mb_strlen($text, 'UTF-8')) $output .= '本文共' . mb_strlen(preg_replace('/\s/','',html_entity_decode(strip_tags($post->post_content))),'UTF-8') . '个字';
    return $output;
  }
}

2、再把调用统计代码加到自己认为适合的位置,如 single.php 文件的某个位置。

<?php echo count_words ($text); ?>

wordpress添加预计阅读时间代码

将以下代码加到主题的 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;
}

2、再把调用统计代码添加到 single.php 文件适合的位置即可。

<?php echo count_words_read_time(); ?>

本文链接:http://so.lmcjl.com/news/15784/

展开阅读全文
上一篇:MySQL UUID 下一篇:赠与合同书怎么写
相关内容