| @@ -28,9 +28,9 @@ | ||
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | public function view_params() { |
| 31 | 31 | $single_doc_content = $this->attributes['the_content']; |
| 32 | - $content_without_html_tags = wp_strip_all_tags( $single_doc_content ); | |
| 32 | + $content_without_html_tags = strip_tags( $single_doc_content ); | |
| 33 | 33 | preg_match_all( '/<[^>]*>|[\p{L}\p{M}]+/u', $content_without_html_tags, $matches ); |
| 34 | 34 | $reading_total_words = ! empty( $matches[0] ) ? count( $matches[0] ) : count( [] ); |
| 35 | 35 | |
| 36 | 36 | //lets assume an adult reads 200 words per minute, based on this information calculate the reading time |