0) { $match_result = []; preg_match( '/^[\p{Latin}\p{Common}\p{Greek}\p{Cyrillic}\p{Georgian}\p{Old_Turkic}]+$/u', $excerpt, $match_result ); $percentage_of_multibyte_chars = 100 * $multibyte_chars_count / $raw_chars_count; if ( empty($match_result) && $percentage_of_multibyte_chars > 30 && function_exists('mb_strimwidth') ) { $text = mb_strimwidth($excerpt, 0, $length, '…'); } else { $text = wp_trim_words($excerpt, $length, '…'); } } } foreach (wp_extract_urls($text) as $url) { $text = str_replace($url, '', $text); } $text = apply_filters('blocksy:excerpt:output', $text); add_filter( 'excerpt_more', 'blocksy_excerpt_more', PHP_INT_MAX ); echo apply_filters('the_excerpt', $text); remove_filter( 'excerpt_more', 'blocksy_excerpt_more', PHP_INT_MAX ); } }