AdnanAhsan
Member
Posted 2 years ago #
When i post, i get 2 records in db table wp_posts, first record post status is publish and second is inherit, i want only 1 record with publish status, how can i prevent second record ?
have a look at screen shot - link below
http://img268.imageshack.us/img268/9352/imgxbm.jpg
Check out this article on post revisions. Based on the information in the "Revision Options" section of that page, you should be able to disable post revisions if you choose to do so.
AdnanAhsan
Member
Posted 2 years ago #
$default_constants = array( 'WP_POST_REVISIONS' => true);
Is it that code to disable revisions ?
i updated it to
$default_constants = array( 'WP_POST_REVISIONS' => false );
No Success! :s
this line is in wp-settings.php i couldn't see it in wp-config.php
AdnanAhsan
Member
Posted 2 years ago #
Great Admin, Problem Solved - Thanks Mate :)