如何在Wordpress博客文章中将JavaScript代码编写为纯文本

时间:2016-05-31 12:25:57

标签: wordpress

我想在我的wordpress托管网站上写一些javascript代码作为纯文本。但每当我看到实时,代码代码都会被省略。如何解决问题意味着如何将脚本代码发布为纯文本?

我想替换以下代码:

<script src="//cdn.ckeditor.com/4.5.7/standard/ckeditor.js"></script>

    <script>
        CKEDITOR.replace( 'article-ckeditor' );
    </script> 
<script>

使用以下代码:     

      <script src="//cdn.ckeditor.com/4.5.7/standard/ckeditor.js">
      </script>

&lt;script&gt; CKEDITOR.replace( 'article-ckeditor' ); &lt;/script&gt; </pre>

1 个答案:

答案 0 :(得分:1)

这包括right in the Codex。您需要将<>字符转换为其字符实体对应字符。例如:

<pre>
  &lt;script&gt;
    var javaScript = 'cool!';
  &lt;/script&gt;
</pre>