The automatic save feature refers to the automatic saving when editing previously published articles; it does not generate any extra IDs or drafts!

When you click the Auto Save button, the page will be automatically submitted and saved – without affecting your edits!
The advantage is that you can save your article at any time; if there's a power outage, internet connection loss, or failure to save your work, losing it could really upset you!
Let's get started with the tutorial!
Step 1: Open/admin/views/article_write.phpdocument
Find the code:
<input type="button" name="savedf" id="savedf" value="保存" onclick="autosave(2);" class="btn btn-primary"/>Modify it as follows:
<input type="button" name="savedf" id="savedf" value="自动保存" onclick="startAutosave()" class="btn btn-primary">
<script>
var timerss; // 定时器
function startAutosave() {
// 点击按钮时立即进行一次保存
autosave();
// 设置定时器,每隔 15 秒钟自动保存一次
timerss = setInterval(function() {
autosave();
}, 15000);
}
</script>Step 2: Adjust the time for automatic scheduled saving.

The unit is milliseconds!
1500 means 15 seconds!
You can customize it according to your preferences!
Once done, simply save!