使用 WordPres的朋友很多都使用了文章id作为固定链接形式,但由于草稿、修订版本、附件等的存在,文章id增长是很快的。对于强迫症来说,文章id是跳跃式的,并不连续,让人很不舒服。想要修改文章id。想要修改文章id可以试试这个方法,通过数据库执行语句的方式即可修改
update wp_posts set id = 2 where id = 12;
update wp_posts set post_parent = 2 where post_parent = 12;
update wp_term_relationships set object_id = 2 where object_id = 12;
update wp_postmeta set post_id = 2 where post_id = 12;
update wp_comments set comment_post_ID = 2 where comment_post_ID = 12;
注意
如果你修改了前缀,这里也要将wp_修改为你的前缀
语句中2为修改后的id,12为修改前的id,自行修改后执行就可以了
参与讨论