Categories:
php Wordpress

Update URL with new one in WordPress database

06 October 2021
Author: victor-dev
UPDATE wp_options SET option_value = replace(option_value, 'http://old.example.com' , 'https://new.example.com') 
WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = replace(post_content, 'http://old.example.com' , 'https://new.example.com');
UPDATE wp_posts SET guid = replace(guid, 'http://old.example.com' , 'https://new.example.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://old.example.com' , 'https://new.example.com');
UPDATE wp_usermeta SET meta_value = replace(meta_value, 'http://old.example.com' , 'https://new.example.com');
UPDATE wp_links SET link_url = replace(link_url,'http://old.example.com' , 'https://new.example.com');
UPDATE wp_comments SET comment_content = replace(comment_content ,'http://old.example.com' , 'https://new.example.com');