Tag: wordpress

Disable WordPress’s post revisions

2010-01-28, Posted in usefulness | 我来说两句 | 查看全文>>

From the version of 2.6,wordpress add the post revision function,this function may affect the performance of wordpress,so ,if you want disable this function ,you can add this code to wp-config.php

define('WP_POST_REVISIONS', false);

About the value of the WP_POST_REVISIONS is:

true (default) or -1: saving all post revisions
false or 0: don't saving any post revisions
Integer n greater than 0: save n post revisions (+1 only save the first post revision),and the old post revision will be deleted

Everyone is still recommended to set 1 or 2, and the total time of accidentally deleted

标签: , ,