sql 当您移动网站时,Wordpress搜索并替换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 当您移动网站时,Wordpress搜索并替换相关的知识,希望对你有一定的参考价值。

UPDATE wp_options SET option_value = replace(option_value, 'http://localhost:8888/testing', 'http://www.live-website.com') WHERE option_name = 'home' OR option_name = 'siteurl';

UPDATE wp_posts SET guid = replace(guid, 'http://localhost:8888/testing','http://www.live-website.com');

UPDATE wp_posts SET post_content = replace(post_content, 'http://localhost:8888/testing', 'http://www.live-website.com');

UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://localhost:8888/testing','http://www.live-website.com');

以上是关于sql 当您移动网站时,Wordpress搜索并替换的主要内容,如果未能解决你的问题,请参考以下文章

sql 用于将WordPress网站移动到新域的SQL查询

移动网站失去焦点以放弃键盘

响应式设计不适用于 wordpress

为带有子菜单的移动菜单添加关闭功能

Wordpress - 点击时自动关闭移动菜单

在 Wordpress 中将 SQL Server 表打印到网站?