Попробуйте вставить в functions.php function convert_unicode($t, $to = \'windows-1251\'){ $to = strtolower($to); if ($to == \'utf-8\') { return urldecode($t); } else { if( function_exists(\"get_magic_quotes_gpc\") && get_magic_quotes_gpc() ) $t = stripslashes( $t ); if ( function_exists(\'iconv\') ) $t = iconv(\"UTF-8\", $to.\"//IGNORE\", $t); else $t = \"The library iconv is not supported by your server\"; } return urldecode($t);}олжно помочь