在主题的 functions.php 文件里面加入如下代码:
remove_action ('pre_post_update','wp_save_post_revision');
add_action ('wp_print_scripts','disable_autosave');
function disable_autosave() {
wp_deregister_script('autosave');
}
或者
remove_action ('pre_post_update','wp_save_post_revision');
wp_deregister_script ('autosave');
remove_filter ('the_content','wptexturize');
注意:
这里的禁止自动保存是指在你写文章过程中/修改文章时禁止自动保存,如果你点击了“添加新文章”、“添加新页面”...
wordpress阅读全文