我在网站上使用CKEditor
,在这里我想删除页脚标签。我该怎么做?我正在使用CKEditor
添加一些有用的内容。一切正常,但我不想显示页脚标签。它显示p
和div
标签。如何从p
删除页脚div
和CKEditor
标签?
答案 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';