Pergunta

I need disable auto save & revisions with function.php in wordpress. What should I do? thanks

Foi útil?

Solução

define('WP_POST_REVISIONS', false);
function disable_autosave() {
    wp_deregister_script('autosave');
}
add_action('wp_print_scripts', 'disable_autosave');

Simple method

Licenciado em: CC-BY-SA com atribuição
Não afiliado a wordpress.stackexchange
scroll top