如果您正在使用save_post 动作钩;然后,可以使用以下条件阻止代码在自动保存期间执行:
function do_not_autosave( $post ) {
// Check to see if we are autosaving
if (defined(\'DOING_AUTOSAVE\') && DOING_AUTOSAVE)
return;
// Rest of the code here
}
add_action( \'save_post\', \'do_not_autosave\');