Created
April 28, 2016 17:42
-
-
Save papplo/56c9ff0840fd90ac85d12535a2d9659c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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