Чтобы исправить кавычки в вашем блоге на Вордпресс, необходимо добавить в файл functions.php следующий код:
remove_filter('the_content', 'wptexturize'); remove_filter('the_title', 'wptexturize'); remove_filter('comment_text', 'wptexturize');
или
if ( function_exists('remove_filter') ) { remove_filter('the_content', 'wptexturize'); remove_filter('the_title', 'wptexturize'); remove_filter('comment_text', 'wptexturize'); }
Проблема решена, ваши кавычки будут правильными.