wordpressで半角のダブルクォーテーションを使うと勝手に全角に変換されてしまいます。
直す方法は2つあります
functions.phpに下記のコードを書き足す
remove_filter(‘the_content’, ‘wptexturize’);
remove_filter(‘the_excerpt’, ‘wptexturize’);
remove_filter(‘the_title’, ‘wptexturize’);
2つ目は<code>タグで囲う
<code>
</code>