服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > wordpress教程 >

关闭Kindeditor for wordpress的过滤模式

时间:2016-07-03 08:16来源:未知 作者:最模板 点击:
有的时候需要直接在 Kindeditor 中写代码,例如code标签,编辑器本身没有这个功能的(注意插入程序代码是pre不是code),但是你切换HTML代码模式直接写代码的时候,很多HTML标签和属性会

有的时候需要直接在 Kindeditor 中写代码,例如<code>标签,编辑器本身没有这个功能的(注意“插入程序代码”是<pre>不是<code>),但是你切换“HTML代码模式”直接写代码的时候,很多HTML标签和属性会被过滤掉,这就是所谓的“过滤模式”,官网有如何关闭过滤模式的文档,但是没有针对wordpress插件的。经过一番寻找终于修改成功

function.php 下面追加两行, 这是针对wordpres “过滤模式”关闭操作

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

接下来是修改Kindeditor for wordpress 的过滤模式, 方法如下:

打开 wp-content/plugins/kindeditor-for-wordpress 下面的 kindeditor_class.php 文件,找到 load_kindeditor 函数,在option的结尾加入 filterMode: false ,修改后如下:

function load_kindeditor()
{
  ?>
  <script type="text/javascript">
  //<![CDATA[
    var editor;
    var options = {
      cssPath : ['<?php echo $this->plugin_path; ?>plugins/code/prettify.css','<?php echo $this->plugin_path; ?>style.css'],
      uploadJson : '<?php echo $this->plugin_path ?>php/upload_json.php',
      fileManagerJson : '<?php echo $this->plugin_path ?>php/file_manager_json.php',
      items : [
      'source', '|', 'undo', 'redo', '|', 'template', 'cut', 'copy', 'paste',
      'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
      'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
      'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'map', 'baidumap','fullscreen','about', '/',
      'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
      'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage','flash', 'media', 'table', 'hr', 'emoticons', 'code', 'anchor', 'blockquote', 'wpmore',
      'link', 'unlink'
      ],
      afterChange : function() {
        jQuery('#wp-word-count .word-count').html(this.count('text'));
      },
      filterMode: false
    };
    KindEditor.ready(function(K) {
        editor = K.create('#content',options);
    });
  //]]>
  </script>
  <?php
}

保存文件,过滤模式就关闭了。

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(1)
100%
------分隔线----------------------------
栏目列表
热点内容