Sorry about the late response, somehow I didn’t see this post until now.
Most likely, @stixtsr meant that the plugin added one unusually large row to wp_options
. The menu settings can get pretty large and the option that the plugin adds (ws_menu_editor
) can reach 100 KB or more. If this is causing performance issues, you can make the option smaller by enabling settings compression. Here’s how:
- Go to the menu editor page.
- Switch to the “Settings” tab.
- Scroll down to the “Debugging” section and check this box: “Compress menu configuration data that’s stored in the database”. Save the changes.
- Go back to the menu editor tab and click “Save Changes” without changing anything.
However, keep in mind that there is a performance trade-off here. Enabling compression will make the settings smaller, but it will increase the time it takes to decompress/parse the settings. In some cases, it’s better to leave this option turned off.