wordpress 半角のダブルクォーテーションが全角に変換されてしまう問題

wordpressで半角のダブルクォーテーションを使うと勝手に全角に変換されてしまいます。

新しい記事

直す方法は2つあります

functions.phpに下記のコードを書き足す

remove_filter(‘the_content’, ‘wptexturize’);
remove_filter(‘the_excerpt’, ‘wptexturize’);
remove_filter(‘the_title’, ‘wptexturize’);

2つ目は<code>タグで囲う

<code>

</code>

%d人のブロガーが「いいね」をつけました。