把 WordPress 的文章ID进行了整理,都好了,唯一遗留的问题就是文章的guid,因为文章ID被整理过了,所以它也打乱了。如果重置guid呢?以下这段代码亲测无误,执行后guid里面的id和文章id同步了。 update wp_posts set guid = concat('https://www.chinu.cn/?p=',ID) where post_status = 'publish' and post_type = 'post';