Try to disable the wordpress 4.3's REVISIONS
According to someone else said. I try to disable the wordpress 4.3's REVISIONS.
This is the second post.
You can disable the REVISION by adding the follow code in the wp-config.php
[php]
// don't save REVISIONS(except the auto save)
define('WP_POST_REVISIONS', false);
//keep all REVISIONS
define('WP_POST_REVISIONS', true);
// keep n REVISiONS
define('WP_POST_REVISIONS', 3);
[/php]
阅读剩余
版权声明:
作者:John
链接:https://vps.la/2015/09/08/try-to-disable-the-wordpress-4-3s-revisions/
文章版权归作者所有,未经允许请勿转载。
THE END