Guest User

Untitled

a guest
May 27th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function reading_time() {
  2.  
  3. $content = get_post_field('post_content', $post->ID);
  4.  
  5. $word_count = str_word_count(strip_tags( $content));
  6.  
  7. $readingtime = ceil($word_count / 200);
  8.  
  9. if ($readingtime === 1) {
  10. $timer = " minute";
  11. } else {
  12. $timer = " minutes";
  13. }
  14.  
  15. $totalreadingtime = $readingtime . $timer;
  16.  
  17. echo $totalreadingtime;
  18. }
Add Comment
Please, Sign In to add comment