Skip to content

Instantly share code, notes, and snippets.

@luisespinozadev
Created December 21, 2018 02:45
Show Gist options
  • Select an option

  • Save luisespinozadev/4bec64807f41b5e6e94d7b7a666c31c8 to your computer and use it in GitHub Desktop.

Select an option

Save luisespinozadev/4bec64807f41b5e6e94d7b7a666c31c8 to your computer and use it in GitHub Desktop.
Cambiar dominio WordPress
UPDATE wp_options SET option_value = REPLACE ( option_value, 'http://dominioantiguo.com', 'http://dominionuevo.com' );
UPDATE wp_posts SET guid = REPLACE ( guid, 'http://dominioantiguo.com', 'http://dominionuevo.com');
UPDATE wp_posts SET post_content = REPLACE ( post_content, 'http://dominioantiguo.com', 'http://dominionuevo.com' );
UPDATE wp_postmeta SET meta_value = REPLACE ( meta_value, 'http://dominioantiguo.com', 'http://dominionuevo.com' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment