Forums
Home / Fixing WordPress / start id post from 999
(@juan_r)
15 years, 6 months ago
I need to start my id post from 999. How can I do it? Thanks
(@michaelh)
Here’s one article: https://dev.mysql.com/doc/refman/5.1/en/example-auto-increment.html
something like:
ALTER TABLE wp_posts AUTO_INCREMENT=999
Please backup your database before attempting.
Also remember WordPress uses the post table for attachements, pages, revisions, autosaves, so keeping your POST IDs sequential is not possible.