从CKEditor中删除页脚标记

I am using CKEditor in my website and here I want to remove footer tags. How can I do it? I am using CKEditor to add some useful content. It is working fine but I don’t want to show the footer tags. It shows p and div tags. How can I remove footer p and div tags from CKEditor?

It depends what the footer is displaying.
This old thread suggests:

Add this code in your config.js file :

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

This is part of the basic configuration of CKEditor

If you, however, want to disable some functionality that comes from a CKEditor plugin and is still in your build, you can use the removePlugins setting to prevent the plugin from loading.

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

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