我想添加到
<script type="text/javascript">
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph</p>");
</script>
wordpress editor。我已经在编辑器的html模式中添加了它,但它被更改为
<p>
<script type="text/javascript">// <![CDATA[
document.write("
<h1>This is a heading</h1>
<p>");
document.write("
<p>This is a paragraph</p>
<p>");
// ]]></script>
</p>
我尝试在脚本代码之间插入但不能正常工作。 我已经尝试了几个插件,如原始HTML和内联javascripts,但仍然没有帮助。????
答案 0 :(得分:1)
remove_filter( 'the_content', 'wpautop' );
由于