最简单的就是新建数据库直接用以前的数据库账号和密码
然后数据库命令替换:- UPDATE wp_posts SET post_content = replace( post_content, '原来','现在') ;UPDATE wp_comments SET comment_content = replace(comment_content, '原来','现在') ;UPDATE wp_comments SET comment_author_url = replace(comment_author_url,'原来','现在') ;UPDATE wp_posts SET guid= replace(guid,'原来','现在') ;
复制代码 |