如何在WordPress中使用`unction.php`禁用自动保存和修订? 时间:2020-09-07 作者:nasour naghipour 我需要禁用自动保存(&A);具有功能的修订。wordpress中的php。我该怎么办?谢谢 1 个回复 最合适的回答,由SO网友:Raashid Din 整理而成 define(\'WP_POST_REVISIONS\', false); function disable_autosave() { wp_deregister_script(\'autosave\'); } add_action(\'wp_print_scripts\', \'disable_autosave\'); Simple method 文章导航