Pages like post #1 is ?p=1 but post number two is ?p=29 and the third is ?p=31 what is up with that?
How can I make them consistent? 1-3?
Pages like post #1 is ?p=1 but post number two is ?p=29 and the third is ?p=31 what is up with that?
How can I make them consistent? 1-3?
every time a post is autosaved it adds a revision number
to disable autosave
http://codex.wordpress.org/Editing_wp-config.php#Disable_Post_Revisions
So add define('WP_POST_REVISIONS', false );
?
Yes, add the following you to your wp-config.php file:
define('WP_POST_REVISIONS', false );
You should note though that the numbers are used for more than just post saving, so you cannot rely on them being consecutive even if you turn off revisions and auto-saves.
This topic has been closed to new replies.