Skip to content

Instantly share code, notes, and snippets.

@rayhon1014
Last active February 11, 2017 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rayhon1014/2dbb14b8e183b4948e2bdf173757e885 to your computer and use it in GitHub Desktop.
Save rayhon1014/2dbb14b8e183b4948e2bdf173757e885 to your computer and use it in GitHub Desktop.
Useful wordpress database commands
#-------------------------------------------------------
# Migrate wordpress site to another domain name
#-------------------------------------------------------
# ref: http://coolestguidesontheplanet.com/updating-wordpress-mysql-database-after-moving-to-a-new-url/
UPDATE wp_options SET option_value = replace(option_value, 'http://[old].com', 'http://[new].com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://[old].com','http://[new].com');
UPDATE wp_posts SET post_content = replace(post_content, 'http://[old].com', 'http://[new].com');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://[old].com','http://[new].com');
# remove all feature images
DELETE FROM wp_postmeta WHERE meta_key = '_thumbnail_id'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment