防止Wordpress自动格式化页面HTML

时间:2015-03-09 12:58:37

标签: javascript html wordpress code-formatting

我正在尝试将脚本添加到Wordpress中的页面,

现在我将是第一个承认CMS的人,Drupal是我的强项,WP。

问题在于我要在页面内容中添加一个脚本,当我保存时,WP会添加打破脚本的空格:

代码的原始部分如下所示:

 [... other code that is not affected---]

 o = (n & 3) << 4 | r >> 4;
 u = (r & 15) << 2 | i >> 6;

 [... other code that is not affected---]

但是一旦我点击“更新”,它就会将代码重新格式化为:

 [... other code that is not affected---]

 o = (n & 3) < < 4 | r >> 4;
 u = (r & 15) < < 2 | i >> 6;

 [... other code that is not affected---]

正如你所看到的那样,它会在两个字符之间添加一个空格,这会破坏代码,

有没有办法关闭自动格式以防止这种情况?

任何帮助总是受到赞赏

吉姆

1 个答案:

答案 0 :(得分:2)

在WP-Posts中使用JScript时,必须将它们包含在外部js-Files中。

参考:http://codex.wordpress.org/Using_Javascript