Hi @loralora
Thanks for your question.
I understand you would like to save your post when you want to and want to disable autosave.
One way to do this might be to add the following to your. wp-config.php
file
define('AUTOSAVE_INTERVAL', 86400);
The number 86400
is the number of milliseconds between each autosave. If you increase that to a high value it will effectively disable autosaving.
You could also use a Plugin.
I hope this helps?