Skip to content

Instantly share code, notes, and snippets.

View joelalexandersson's full-sized avatar

Joel Alexandersson joelalexandersson

View GitHub Profile
@joelalexandersson
joelalexandersson / replace.sql
Created February 17, 2016 08:12
Replace wp base url
set @from = '';
set @to = '';
UPDATE wp_options SET option_value = replace(option_value, @from, @to) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, @from, @to);
UPDATE wp_posts SET post_content = replace(post_content, @from, @to);
UPDATE wp_postmeta SET meta_value = replace(meta_value, @from, @to);