Created
May 31, 2023 17:12
-
-
Save larbous/c93dcd40270d53d072ed99fa75e5e68a to your computer and use it in GitHub Desktop.
Limitando as revisões de post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Coloque o código abaixo no arquivo wp-config.php na raiz da instalação do WordPress | |
// Desabilitar as revisões do post | |
// insert above the ‘ABSPATH’ otherwise it won’t work | |
define('AUTOSAVE_INTERVAL', 300); // seconds | |
define('WP_POST_REVISIONS', 3); // true ou false qualquer número de revisões |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment