Difference between revisions of "WordPress:Revisioni"
From Aino Wiki
(Created page with "==Cancellare le Revisioni (Storico modifiche)== Si può intervenire direttamente sul DB oppure installare dei PlugIn: Il seguente cancella ed ottimizza (non so in che termini...") |
(No difference)
|
Latest revision as of 08:59, 17 July 2014
Cancellare le Revisioni (Storico modifiche)
Si può intervenire direttamente sul DB oppure installare dei PlugIn:
Il seguente cancella ed ottimizza (non so in che termini): by CAGE Nome: Optimize Database after Deleting Revisions.
Disabilitare l'uso delle revisioni
Da: wpbeginner
Open 'wp-config.php' located in your WordPress root directory and add the following code:
define('AUTOSAVE_INTERVAL', 300 ); // seconds
define('WP_POST_REVISIONS', false );
This code will disable all future revisions to be saved and it will also increase your autosave interval from 60 seconds to 300 seconds, so it means your post will be autosaving every 5 minute instead of every minute.