Wordpress Sql Find And Replace

[Solved] Wordpress Sql Find And Replace | Php - Code Explorer | yomemimo.com
Question : wordpress sql find and replace

Answered by : thoughtful-termite-yoe7olmsvhpf

UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl');
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl', 'http://www.newurl');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl');

Source : https://wpbeaches.com/updating-wordpress-mysql-database-after-moving-to-a-new-url/ | Last Update : Tue, 07 Apr 20

Answers related to wordpress sql find and replace

Code Explorer Popular Question For Php