Plugins like WP-Optimize are great, but for a professional touch, you should handle overhead manually to keep the site lean.
WordPress stores thousands of ‘Revisions’. Limit them in wp-config.php:
define('WP_POST_REVISIONS', 5); // Keep only last 5
Then, run this SQL query to delete old ones: DELETE FROM wp_posts WHERE post_type = 'revision';
