Skip to content

Instantly share code, notes, and snippets.

@papplo
Created April 28, 2016 17:42
Show Gist options
  • Save papplo/56c9ff0840fd90ac85d12535a2d9659c to your computer and use it in GitHub Desktop.
Save papplo/56c9ff0840fd90ac85d12535a2d9659c to your computer and use it in GitHub Desktop.
<?php
function optimize_heartbeat_settings( $settings ) {
// Experiment with these two settings below
$settings['autostart'] = false; // default is true
$settings['interval'] = 60; // 15 sec by default
return $settings;
}
add_filter( 'heartbeat_settings', 'optimize_heartbeat_settings' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment