«
»

2015, MYSQL, wordpress

Cambiar de dominio WordPress

02.17.15 | Comment?

Alberto Suárez Pérez
UPDATE wp_options
SET option_value = REPLACE(option_value,'url_anterior','url_nuevo');
UPDATE wp_posts
SET post_content = REPLACE(post_content,'url_anterior','url_nuevo');
UPDATE wp_posts
SET guid = REPLACE(guid,'url_anterior','url_nuevo');
UPDATE wp_postmeta
SET meta_value = REPLACE(meta_value,'url_anterior','url_anterior');

Comments are closed.


«
»