从CKEditor删除页脚标签

时间:2019-06-01 06:12:47

标签: php html ckeditor

我在网站上使用CKEditor,在这里我想删除页脚标签。我该怎么做?我正在使用CKEditor添加一些有用的内容。一切正常,但我不想显示页脚标签。它显示pdiv标签。如何从p删除页脚divCKEditor标签?

2 个答案:

答案 0 :(得分:2)

这取决于页脚显示的内容。
This old thread建议:

  

将此代码添加到您的config.js文件中:

config.removePlugins = 'elementspath';
config.resize_enabled = false;

这是basic configuration of CKEditor

的一部分
  

但是,如果您要禁用CKEditor插件提供的某些功能,并且该功能仍在您的内部版本中,则可以使用removePlugins设置来阻止该插件加载。

// Remove one plugin.
config.removePlugins = 'elementspath';

// Remove multiple plugins.
config.removePlugins = 'elementspath,save,font';

答案 1 :(得分:0)

您需要在config.js文件中添加以下行:

config.removePlugins = 'elementspath';