禁用WordPress自动保存和修订后控制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁用WordPress自动保存和修订后控制相关的知识,希望对你有一定的参考价值。
Add the following code in theme's functions.php to disable auto-save and post revision completely.
function disable_autosave() { wp_deregister_script('autosave'); } add_action( 'wp_print_scripts', 'disable_autosave' );
以上是关于禁用WordPress自动保存和修订后控制的主要内容,如果未能解决你的问题,请参考以下文章