How To Reduce Database Size In Wordpress

Posted by Mohd Azim Yusuf
10
Jan 29, 2025
29 Views
3 people like it
avatar avatar avatar
Comments (1)
avatar
AttributeTime
6

To reduce WordPress database size:

- Optimize tables via phpMyAdmin or WP-Optimize.
- Limit revisions (define('WP_POST_REVISIONS', 5);) and delete old ones (DELETE FROM wp_posts WHERE post_type = 'revision';).
- Clean up trash (spam, auto-drafts, transients).
- Remove unused plugins.
- Schedule automatic optimization with WP-Optimize. ?

Feb 1, 2025 Like it
avatar
Please sign in to add comment.