Skip to content

Instantly share code, notes, and snippets.

@topdown
Created September 17, 2016 03:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save topdown/3d61dd79b2fcbaab0760b0776e6fde4d to your computer and use it in GitHub Desktop.
Save topdown/3d61dd79b2fcbaab0760b0776e6fde4d to your computer and use it in GitHub Desktop.
Disable WP heartbeat
<?php
// Also available in a plugin
// https://wordpress.org/plugins/heartbeat-control/
add_action( 'init', 'stop_heartbeat', 1 );
function stop_heartbeat() {
wp_deregister_script('heartbeat');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment