В заголовке на сайте, выдает последнию букву такой штукой: �
Помогите пожалуйста, вот сам кусок кода который формирует этот заголовок:
<div class="thumbovertext"> <h2 class="title"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php $title = get_the_title(); if (strlen($title) >= 56) { $title = substr($title, 0, 50) . "..."; } echo $title; ?> </a> </h2> <?php preg_match('/<!--more(.*?)?-->/', $post->post_content, $matches); ?> <a class="button outline" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php if ( isset($matches[1]) && $matches[1] ) { echo $matches[1]; } else { _e('Read More', 'themewich'); } ?> </a> </div>
Замените
strlen
наmb_strlen
иsubstr
наmb_substr
.Спасибо, помогло