Hello.
All options are stored in the database in wp_options table with the option_name 'mw_adminimize'. This option has autoload set to yes.
On one of the sites I manage that value is above 100KB.
`
SELECT option_name, SUM(LENGTH(option_value)) AS autoload_size FROM wp_options WHERE option_name='mw_adminimize';
mw_adminimize 135410
`
I think this data is not needed on all pages so I was wondering I can set autoload to 'no' manually in the database?
Can you see any problems with that approach?
Thanks
Michal