Skip to content

Instantly share code, notes, and snippets.

@larbous
Created May 31, 2023 17:12
Show Gist options
  • Save larbous/c93dcd40270d53d072ed99fa75e5e68a to your computer and use it in GitHub Desktop.
Save larbous/c93dcd40270d53d072ed99fa75e5e68a to your computer and use it in GitHub Desktop.
Limitando as revisões de post
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