Native UTF-8
-
Please consider updating the plugin using mb_convert_encoding instead of html_entity_decode to support native UTF-8 for Cyrillic and other fonts. It’s just a 2-line change:
$auto_image_post_title = mb_convert_encoding(get_the_title($post->ID), ‘HTML-ENTITIES’, ‘UTF-8’);
$auto_image_post_title = preg_replace(‘~^(&([a-zA-Z0-9]);)~’,htmlentities(‘${1}’),$auto_image_post_title);
//THANKS
- You must be logged in to reply to this topic.