In major testing of a new blog I have made over 100 fake posts. I have now deleted all posts and wish to set the post ID counter back to zero. How is that done?
Eric
In major testing of a new blog I have made over 100 fake posts. I have now deleted all posts and wish to set the post ID counter back to zero. How is that done?
Eric
In your database client software, assuming that "posts" is the name of your posts table:
alter table posts auto_increment=1;
This topic has been closed to new replies.