سؤال

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

هل كانت مفيدة؟

المحلول

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

Simple method

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى wordpress.stackexchange
scroll top