WordPress批量替换文章内容/文章标题/标签TAG,打开MYSQL,执行以下命令:
注意:在执行任何数据库批量修改前一定记得备份数据库,如果操作失误就还原数据库,一定,一定,一定
1、批量替换文章内容
update wp_posts set post_content = replace(post_content,’co.com’,’留地’)
批量将文章中的 cwhello.com 替换成 重蔚自留地
2、批量替换文章标题
update wp_posts set post_title = replace(post_title,’cwcom’,’重蔚自留地’)
批量将标题中的cwhello.com替换成重蔚自留地
3、批量替换下载地址中的制定字符
update wp_postmeta set meta_value = replace(meta_value,’cwcom’,’www.cello.com’)
批量将下载地址中的cwheom替换成wwhello.com
4、批量替换TAG标签
update wp_terms set name = replace(name,’cwlo.com’,’重蔚自留地’)
批量将TAG中的 cwhello.com 替换成 重蔚自留地
5、wordpress更换域名或者变更ssl,由http变为https
更换域名:
on_value = replace(option_value, ‘cwhcom’,’www.cllo.com’) ; UPDATE wp_posts SET post_content = replace(post_content, ‘cwheom’,’w.c.com’) ; UPDATE wp_comments SET comment_content = replace(comment_content, ‘cwhcom’, ‘wwwhelcom’) ; UPDATE wp_comments SET comment_author_url = replace(comment_author_url, ‘cwhecom’, ‘www.cwllo.com’) ;
以上代码中,cwh.com 代表原来的域名,whello.com 代表新域名。
域名一定要输入完整;如果你使用类似 blohello.com 这样的二级域名,也是可以的,只要输入完整域名就可以了。
由http变为https(一般适用于网站后来使用了ssl):
on_value = replace(option_value, ‘cwhellom’,’wwwwhello.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://’) ;
转载请注明:范耀祖 » WordPress更换域名/文章标题/标签TAG/批量修改文章内容