Skip to content

Instantly share code, notes, and snippets.

@abrudtkuhl
Created July 22, 2014 17:54
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save abrudtkuhl/f4f13bf2024f095250db to your computer and use it in GitHub Desktop.
Save abrudtkuhl/f4f13bf2024f095250db to your computer and use it in GitHub Desktop.
Reset Auto_Increment in WordPress Posts table
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