在编辑器中自动添加p标签和br标签

时间:2013-12-19 05:31:26

标签: javascript wordpress editor

我想添加到

<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,但仍然没有帮助。????

1 个答案:

答案 0 :(得分:1)

你试过这个吗?

remove_filter( 'the_content', 'wpautop' );

由于