Created
July 22, 2014 17:54
-
-
Save abrudtkuhl/f4f13bf2024f095250db to your computer and use it in GitHub Desktop.
Reset Auto_Increment in WordPress Posts table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE FROM wp_posts; | |
DELETE FROM wp_post_meta; | |
TRUNCATE TABLE wp_posts; | |
TRUNCATE TABLE wp_post_meta; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment