You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: