Not sure why this blog out of many I manage doesn't show revisions.
How can I go back to default?
Not sure why this blog out of many I manage doesn't show revisions.
How can I go back to default?
find and open your wp-config.php file, find a line that matches this one :
define ('WP_POST_REVISIONS'... ...
If you can see this line, replace value with this :
define ('WP_POST_REVISIONS', '3');
This will allow only 3 revision version for each post.
Otherwise, I don't know where is the issue.
Regards
Edit any post and click Screen Options at the top of the page. Check "Revisions" and the Revisions pane should magically appear.
@Esmi
Yeah ! Very well !!!
@Greenpeas
You can do the change I told above, it prevents database waste space.
Cheers
it prevents database waste space
Agreed but for those who aren't comfortable editing their wp-config.php file, there's a plugin: http://wordpress.org/extend/plugins/revision-control/
It actually has the following:
define (’WP_POST_REVISIONS’, 0);
define('WP_POST_REVISIONS', false);
so... should I channge to:
define (’WP_POST_REVISIONS’, 3);
define('WP_POST_REVISIONS', true);
?
Sure !
Are you confortable with wp-config.php file ?
found answer here:
http://codex.wordpress.org/Editing_wp-config.php#Post_Revisions
Looks like above will do it!
Thanks
You must log in to post.