Skip to content

Instantly share code, notes, and snippets.

@LeoLopesWeb
Last active September 22, 2023 19:52
Show Gist options
  • Select an option

  • Save LeoLopesWeb/2ef05c45e5506a1ca108bfffea6eba6e to your computer and use it in GitHub Desktop.

Select an option

Save LeoLopesWeb/2ef05c45e5506a1ca108bfffea6eba6e to your computer and use it in GitHub Desktop.
/**/
function get_reading_time() {
$article = get_post_field( 'post_content', get_the_ID() );
$wordcount = str_word_count( strip_tags( $article ) );
$time = ceil($wordcount / 250);
if ($time == 1) {
$label = " minuto";
} else {
$label = " minutos";
}
$totalString = $time . $label;
return $totalString;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment