문제

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