Description:
Learn how you can make your Wordpress iste faster with some SQL commands. In this Wordpress tutorial, we delete post revision, clean comment and options tables.
ALWAYS BACKUP YOUR DATABASE BEFORE USING THESE COMMANDS!
You can read the whole tutorial here: http://wpthemesbay.com/make-wordpress-faster-using-sql-queries/
Here are the queries used in the video:
DELETE FROM wp_posts WHERE post_type = "revision";
DELETE FROM `wp_options` WHERE `option_name` LIKE ('%_transient_%')
DELETE FROM wp_comments WHERE wp_comments.comment_approved = 'spam';
DELETE FROM wp_commentmeta WHERE meta_key LIKE '%akismet%';
Share this link via
Or copy link























