기사 단어 수와 읽기 시간을 표시합니다. 이 기능의 용도는 무엇인지 모르겠지만 일부 사용자는 이를 추가하면 추가할 수 있는지 묻습니다. 아래 WordPress Tutorial 칼럼에서는 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; } }
코드는 현재 항목에 추가됩니다. 테마 함수 템플릿 function.php 중간.
글읽기시간
// 阅读时间 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()); }
코드는 현재 테마 함수 템플릿인 function.php에 추가되어 있습니다.
기사 단어 수 및 읽기 시간 코드 호출
기사 단어 수 코드 표시:
<?php echo zm_count_words($text); ?>
읽기 시간 코드 표시:
<?php zm_reading_time(); ?>
위 호출 코드를 현재 주제 텍스트 템플릿의 적절한 위치에 추가하세요.
단, 단어 수와 읽는 시간은 그다지 정확하지 않으며, 특히 읽는 시간은 CCTV 아나운서의 말하는 속도에 따라 더욱 말도 안 됩니다.
이 글을 쓰고 나서 인터넷에 더 간단한 코드가 있다는 것을 알게 되었습니다. 차이점은 위의 코드는 초 단위까지 정확하고 다음 코드는 분까지만 추정한다는 것입니다.
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(); ?>
위 내용은 WordPress 테마에 기사 단어 수 및 읽기 시간 추가의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!