[ad_1]
`class read_time_counter`
`{`
`public static function bmb_read_time_counter(string $content, string $wpm = ‘300’) :string`
`{`
`$clean_content = strip_tags(strip_shortcodes($content));`
`$word_count = str_word_count($clean_content);`
`return ceil($word_count / $wpm);`
`}`
`}`
