WordPress heartbeat is made to save your articles automatically but it can slow down your server depending on your site size and all the plugins you got. If you’d like to stil use the feature but lower its saving rate, you can use the following code : add_action( 'init', 'customize_heartbeat', 1 ); function customize_heartbeat() { // Register the wordpress native script if necessary if (!wp_script

