WordPress

Site Migration

Syntax#

Updating the tables with a new URL

UPDATE wp_options SET option_value = replace(option_value, 'OLD_SITE, 'NEW_SITE') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'OLD_SITE','NEW_SITE');
UPDATE wp_posts SET post_content = replace(post_content, 'OLD_SITE', 'NEW_SITE');

This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow