Para cambiar el dominio de un wordpress por Mysql, basta con ejecutar las siguientes sentencias MYSQL, cambiando los valores por nuestro dominio antiguo y nuestro dominio nuevo:
update wp_posts set post_content = replace(post_content, 'http://localhost', 'http://www.newdomain.com'); update wp_posts set guid = replace(guid, 'http://localhost', 'http://www.newdomain.com'); update wp_options set option_value = replace(option_value, 'http://localhost', 'http://www.newdomain.com'); update wp_postmeta set meta_value = replace(meta_value, 'http://localhost', 'http://www.newdomain.com');