WordPress批量替换文章内容/文章标题/标签TAG,打开MYSQL,执行以下命令:
注意:在执行任何数据库批量修改前一定记得备份数据库,如果操作失误就还原数据库,一定,一定,一定
1、批量替换文章内容
update wp_posts set post_content = replace(post_content,'kaixuan','凯旋')
批量将文章中的kaixuan替换成凯旋
2、批量替换文章标题
update wp_posts set post_title = replace(post_title,'kaixuan','凯旋')
批量将标题中的kaixuan替换成凯旋
3、批量替换下载地址中的制定字符
update wp_postmeta set meta_value = replace(meta_value,'weiyunxiao.com','www.weiyunxiao.com')
批量将下载地址中的weiyunxiao.com替换成www.weiyunxiao.com
4、批量替换TAG标签
update wp_terms set name = replace(name,'kaixuan','凯旋')
批量将TAG中的kaixuan替换成凯旋
5、wordpress更换域名或者变更ssl,由http变为https
更换域名:
on_value = replace(option_value, 'weiyunxiao.com','www.weiyunxiao.com') ;
UPDATE wp_posts SET post_content = replace(post_content, 'weiyunxiao.com','www.weiyunxiao.com') ;
UPDATE wp_comments SET comment_content = replace(comment_content, 'weiyunxiao.com', 'weiyunxiao') ;
UPDATE wp_comments SET comment_author_url = replace(comment_author_url, 'weiyunxiao.com', 'www.weiyunxiao.com') ;
以上代码中,weiyunxiao.com 代表原来的域名,www.weiyunxiao.com 代表新域名。
域名一定要输入完整;如果你使用类似 www.weiyunxiao.com 这样的二级域名,也是可以的,只要输入完整域名就可以了。
由http变为https(一般适用于网站后来使用了ssl):
on_value = replace(option_value, 'weiyunxiao.com','www.weiyunxiao.com') ;
UPDATE wp_posts SET post_content = replace(post_content, 'http://','https://') ;
UPDATE wp_comments SET comment_content = replace(comment_content, 'http://','https://') ;
UPDATE wp_comments SET comment_author_url = replace(comment_author_url, 'http://','https://') ;
原创文章,作者:韦 云潇,如若转载,请注明出处:https://www.weiyunxiao.com/1695.html