Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # Run this in SQL query of PHPmyAdmin
  2.  
  3. # Show the size of all the autoloaded data - this is loaded on *every* page of your site
  4. SELECT SUM(LENGTH(option_value)) as autoload_size FROM wp_options WHERE autoload='yes';
  5.  
  6. # Show what is loading in autoload
  7. SELECT LENGTH(option_value),option_name FROM wp_options WHERE autoload='yes' ORDER BY length(option_value) DESC LIMIT 20;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement