0

ChildTheme functions.php に次のコードをコピーしましたが、まだ機能しませんでした:

remove_action('init', 'kses_init');
remove_action('set_current_user', 'kses_init');

1 HTML MODE で次のようなコードを記述した場合:

<pre>
<div>why the DIV outside will disappear? </div>
hello() => 'hello world';   //The '>' will disappear as well
</pre>

2 しかし、それを WRITE MODE に変更します。これは私が期待したものではなく、HTML MODE に戻ると、次のように続きます。

<div>why the DIV outside will disappear?</div>
<pre>hello() =&gt; 'hello world';   //The '&gt;' will disappear as well
</pre>

3 そして、投稿をプレビューすると、ページは次のように表示されます (> に変更> ; ):

外部の DIV が消えるのはなぜですか?

hello() =&gt; 'hello world';   //The '&gt;' will disappear as well

そして今、プラグイン WP Code Highlight が原因なのだろうかと思います。

4

1 に答える 1