Home / Admin / Decrease Auto-Save Interval
Duplicate Snippet

Embed Snippet on Your Site

Decrease Auto-Save Interval

Change post editor auto-save to 5 minutes instead of 1.

300+
Code Preview
php
<?php
if ( ! defined( 'AUTOSAVE_INTERVAL' ) ) {
	// Change 5 to the number of minutes you want to use.
	define( 'AUTOSAVE_INTERVAL', 5 * MINUTE_IN_SECONDS );
}

Comments

Add a Comment