Reduce Heartbeat API Frequency
Increases the WordPress Heartbeat API polling interval to 60 seconds site-wide to lower AJAX request load on the server.
PHPby SnipCraft
php
<?php
add_filter( 'heartbeat_settings', function ( $settings ) {
$settings['interval'] = 60;
return $settings;
} );#ajax#heartbeat#performance#server-load